-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 1.15 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
{
"name": "ellipse/dispatcher-callable",
"type": "library",
"description": "Psr-15 middleware dispatcher factory resolving callables",
"keywords": [
"Psr-15",
"middleware",
"request-handler",
"dispatcher",
"callable"
],
"license": "MIT",
"homepage": "https://github.com/ellipsephp/dispatcher-callable",
"support": {
"issues": "https://github.com/ellipsephp/dispatcher-callable/issues",
"source": "https://github.com/ellipsephp/dispatcher-callable"
},
"authors": [
{
"name": "Pierre Mallinjoud",
"email": "pierre.mallinjoud@gmail.com"
}
],
"require": {
"php": ">=7.0",
"psr/http-message": "^1.0",
"psr/http-server-handler": "^1.0",
"psr/http-server-middleware": "^1.0",
"ellipse/dispatcher": "^1.6",
"ellipse/handlers-callable": "^1.0",
"ellipse/middleware-callable": "^1.0"
},
"require-dev": {
"kahlan/kahlan": "^4.0",
"eloquent/phony-kahlan": "^1.0"
},
"autoload": {
"psr-4": {
"Ellipse\\Dispatcher\\": "src"
}
}
}