-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 1.07 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "simoneddy/eddy-route",
"description": "League/Route inspired FastRoute abstraction",
"type": "library",
"license": "MIT",
"config": {
"bin-dir": "bin"
},
"authors": [
{
"name": "Simon Eddy",
"email": "simon@simoneddy.com.au"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Eddy\\Route\\": "src"
}
},
"require": {
"nikic/fast-route": "^1.3",
"middlewares/fast-route": "^1.2",
"middlewares/request-handler": "^1.4",
"middlewares/utils": "^2.2",
"psr/http-message": "^1.0",
"psr/http-server-middleware": "^1.0",
"psr/http-server-handler": "^1.0"
},
"require-dev": {
"zendframework/zend-diactoros": "^2.1",
"zendframework/zend-httphandlerrunner": "^1.1",
"symfony/var-dumper": "^4.3",
"mindplay/middleman": "^3.0",
"behat/behat": "^3.5",
"phpspec/phpspec": "^5.1",
"consolidation/robo": "^1.4"
}
}