Skip to content

Commit

Permalink
initial commit with first api route
Browse files Browse the repository at this point in the history
  • Loading branch information
j0Shi82 committed Jul 28, 2020
0 parents commit 982a20d
Show file tree
Hide file tree
Showing 11 changed files with 1,619 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
MYSQL_SERVERNAME=""
MYSQL_USERNAME=""
MYSQL_PASSWORD=""
MYSQL_DB=""
9 changes: 9 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
* text eol=lf

*.png binary
*.jpg binary
*.gz binary
*.eot binary
*.woff binary
*.woff2 binary
*.ttf binary
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
dev
vendor
.env
20 changes: 20 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"require": {
"slim/slim": "4.*",
"slim/psr7": "^1.1",
"jbbcode/jbbcode": "^1.4",
"vlucas/phpdotenv": "^5.1",
"php-di/slim-bridge": "^3.0"
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"scripts": {
"start": [
"Composer\\Config::disableProcessTimeout",
"php -S localhost:8080 -t public -c dev/php.ini"
]
}
}
Loading

0 comments on commit 982a20d

Please sign in to comment.