blob: 84b435a2715ef60f50aa8c97ff3c4129380cda98 (
plain)
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
|
{
"name": "stack/builder",
"description": "Builder for stack middleware based on HttpKernelInterface.",
"keywords": ["stack"],
"license": "MIT",
"authors": [
{
"name": "Igor Wiedler",
"email": "igor@wiedler.ch"
}
],
"require": {
"php": ">=7.2.0",
"symfony/http-foundation": "~2.1|~3.0|~4.0|~5.0",
"symfony/http-kernel": "~2.1|~3.0|~4.0|~5.0"
},
"require-dev": {
"phpunit/phpunit": "~8.0",
"symfony/routing": "^5.0"
},
"scripts": {
"test": "phpunit --coverage-text"
},
"autoload": {
"psr-0": { "Stack": "src" }
},
"extra": {
"branch-alias": { "dev-master": "1.0-dev" }
}
}
|