-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 1.02 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": "tuupola/callable-handler",
"description": "Compatibility layer for PSR-7 double pass and PSR-15 middlewares.",
"keywords": [
"middleware",
"psr-7",
"psr-15"
],
"homepage": "https://github.com/tuupola/callable-handler",
"license": "MIT",
"authors": [
{
"name": "Mika Tuupola",
"email": "tuupola@appelsiini.net",
"homepage": "https://appelsiini.net/",
"role": "Developer"
}
],
"require": {
"php": "^7.1|^8.0",
"psr/http-server-middleware": "^1.0"
},
"autoload": {
"psr-4": {
"Tuupola\\Middleware\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tuupola\\Middleware\\": "tests"
}
},
"require-dev": {
"phpunit/phpunit": "^7.0|^8.0|^9.0",
"squizlabs/php_codesniffer": "^3.2",
"overtrue/phplint": "^1.0",
"tuupola/http-factory": "^0.4.0|^1.0",
"laminas/laminas-diactoros": "^2.0"
}
}