Adding composer.json to project and updated .gitignore

This commit is contained in:
Brandon Scott 2018-08-03 14:32:46 -04:00
parent eab5c2aa37
commit 2bd0e614d0
2 changed files with 16 additions and 0 deletions

2
.gitignore vendored
View File

@ -7,3 +7,5 @@ update/*
!update/index.html !update/index.html
include/config.php include/config.php
/vendor/

14
composer.json Normal file
View File

@ -0,0 +1,14 @@
{
"name": "xeonproductions/software-admin-panel",
"description": "A protected software administration front-end and API written in PHP.",
"type": "project",
"authors": [
{
"name": "Brandon Scott",
"email": "xeons@users.noreply.github.com"
}
],
"require": {
"smarty/smarty": "~3.1"
}
}