Skip to content

Commit

Permalink
Merge pull request #46 from relayphp/declare-implicit-dependencies
Browse files Browse the repository at this point in the history
Declare implicit dependencies
  • Loading branch information
kevinsmith committed Jul 28, 2019
2 parents e1ec1bd + 358b8e5 commit b5d2f7e
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,21 +18,27 @@
"require": {
"php": ">=7.1",
"psr/http-message": "~1.0",
"psr/http-server-handler": "~1.0"
"psr/http-server-handler": "~1.0",
"psr/http-server-middleware": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "~7.0",
"zendframework/zend-diactoros": "~1.0"
},
"autoload": {
"psr-4": {
"Relay\\": "src/"
}
},
"require-dev": {
"zendframework/zend-diactoros": "~1.0",
"psr/http-server-middleware": "~1.0",
"phpunit/phpunit": "~7.0"
},
"autoload-dev": {
"psr-4": {
"Relay\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"provide": {
"psr/http-server-handler-implementation": "1.0"
}
}

0 comments on commit b5d2f7e

Please sign in to comment.