Skip to content

Commit

Permalink
Merge pull request #130 from samsonasik/normalize-composer
Browse files Browse the repository at this point in the history
normalize composer.json
  • Loading branch information
l0gicgate committed Sep 16, 2019
2 parents 5bf7969 + a967bdd commit 91bab1c
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
{
"name": "slim/slim-skeleton",
"description": "A Slim Framework skeleton application for rapid development",
"keywords": ["microframework", "rest", "router", "psr7"],
"keywords": [
"microframework",
"rest",
"router",
"psr7"
],
"homepage": "http://github.com/slimphp/Slim-Skeleton",
"license": "MIT",
"authors": [
Expand All @@ -27,6 +32,10 @@
"require-dev": {
"phpunit/phpunit": "^7.5"
},
"config": {
"process-timeout": 0,
"sort-packages": true
},
"autoload": {
"psr-4": {
"App\\": "src/"
Expand All @@ -37,10 +46,6 @@
"Tests\\": "tests/"
}
},
"config": {
"process-timeout": 0,
"sort-packages": true
},
"scripts": {
"start": "php -S localhost:8080 -t public",
"test": "phpunit"
Expand Down

0 comments on commit 91bab1c

Please sign in to comment.