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
|
{
"name": "webimpress/http-middleware-compatibility",
"description": "Compatibility library for Draft PSR-15 HTTP Middleware",
"type": "library",
"homepage": "https://github.com/webimpress/http-middleware-compatibility",
"license": "BSD-2-Clause",
"keywords": [
"webimpress",
"psr-15",
"middleware"
],
"support": {
"issues": "https://github.com/webimpress/http-middleware-compatibility/issues",
"source": "https://github.com/webimpress/http-middleware-compatibility"
},
"config": {
"sort-packages": true
},
"extra": {
"dependency": [
"http-interop/http-middleware"
]
},
"require": {
"php": "^5.6 || ^7.0",
"http-interop/http-middleware": "^0.1.1 || ^0.2 || ^0.3 || ^0.4.1 || ^0.5",
"webimpress/composer-extra-dependency": "^0.2.2"
},
"require-dev": {
"phpunit/phpunit": "^5.7.23 || ^6.4.3"
},
"autoload": {
"files": [
"autoload/http-middleware.php"
]
},
"autoload-dev": {
"psr-4": {
"WebimpressTest\\HttpMiddlewareCompatibility\\": "test/"
}
},
"scripts": {
"test": "phpunit --colors=always"
}
}
|