forked from stackphp/builder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 755 Bytes
/
Copy pathcomposer.json
File metadata and controls
30 lines (30 loc) · 755 Bytes
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|~6.0",
"symfony/http-kernel": "~2.1|~3.0|~4.0|~5.0|~6.0"
},
"require-dev": {
"phpunit/phpunit": "~8.0",
"symfony/routing": "^5.0|^6.0"
},
"scripts": {
"test": "phpunit --coverage-text"
},
"autoload": {
"psr-0": { "Stack": "src" }
},
"extra": {
"branch-alias": { "dev-master": "1.0-dev" }
}
}