-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 1.18 KB
/
composer.json
File metadata and controls
42 lines (42 loc) · 1.18 KB
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": "caridea/dispatch",
"type": "library",
"description": "A shrimp of a PSR-15 compliant middleware dispatcher",
"keywords": ["middleware", "dispatch", "request handler", "PSR-15", "PSR-7"],
"homepage": "http://github.com/libreworks/caridea-dispatch",
"license": "Apache-2.0",
"authors": [
{
"name": "Caridea Contributors",
"homepage": "https://github.com/libreworks/caridea-dispatch/contributors"
}
],
"extra": {
"branch-alias": {
"dev-master": "3.0.x-dev"
}
},
"provide": {
"psr/http-server-handler-implementation": "1.0.0",
"psr/http-server-middleware-implementation": "1.0.0"
},
"require": {
"php": ">=7.1.0",
"psr/http-message": "^1.0",
"psr/http-server-handler": "^1.0",
"psr/http-server-middleware": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^6.0.0",
"zendframework/zend-diactoros": "^1.0",
"psr/log": "^1.0"
},
"suggest": {
"psr/log": "Allows use of the Reporter middleware"
},
"autoload": {
"psr-4": {
"Caridea\\Dispatch\\": "src/"
}
}
}