-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 1.47 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
41
42
43
44
45
46
{
"name": "ellipse/dispatcher",
"type": "library",
"description": "Psr-15 middleware dispatcher implementation",
"keywords": [
"Psr-15",
"middleware",
"request-handler",
"dispatcher"
],
"license": "MIT",
"homepage": "https://github.com/ellipsephp/dispatcher",
"support": {
"issues": "https://github.com/ellipsephp/dispatcher/issues",
"source": "https://github.com/ellipsephp/dispatcher"
},
"authors": [
{
"name": "Pierre Mallinjoud",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.0",
"psr/http-message": "^1.0",
"psr/http-server-handler": "^1.0",
"psr/http-server-middleware": "^1.0",
"ellipse/handlers": "^1.0",
"ellipse/type-errors": "^1.0"
},
"require-dev": {
"kahlan/kahlan": "^4.0",
"eloquent/phony-kahlan": "^1.0"
},
"autoload": {
"psr-4": {
"Ellipse\\": "src"
}
},
"suggest": {
"ellipse/dispatcher-callable": "Allows to use callables as Psr-15 middleware/request handlers",
"ellipse/dispatcher-container": "Allows to use Psr-15 middleware/request handler class names using a Psr-11 container",
"ellipse/dispatcher-controller": "Allows to use controller actions as Psr-15 request handlers using a Psr-11 container",
"ellipse/dispatcher-composable": "Allows to compose dispatcher"
}
}