-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
74 lines (74 loc) · 1.74 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "hawkbit/hawkbit",
"type": "library",
"description": "PSR-7 Micro PHP framework",
"keywords": [
"framework",
"StackPHP",
"HttpKernelInterface",
"PSR-7",
"middleware",
"micro",
"Strategility",
"Hawkbit"
],
"homepage": "https://github.com/Hawkbit",
"license": "MIT",
"authors": [
{
"name": "Marco Bunge",
"email": "marco_bunge@web.de"
},
{
"name": "Alex Bilbie",
"email": "hello@alexbilbie.com"
}
],
"require": {
"php": ">=5.5.9",
"filp/whoops": "^2.1",
"league/route": "~3.0",
"league/container": "^2.4",
"league/event": "^2.1",
"league/climate": "^3.2",
"monolog/monolog": "^1.22",
"zendframework/zend-config": "^2.6",
"zendframework/zend-diactoros": "^1.4"
},
"require-dev": {
"phpunit/phpunit": "~4.8",
"symfony/http-kernel": "~2.7|~3.0",
"symfony/psr-http-message-bridge": "*",
"zendframework/zend-stratigility": "~1.1.2|~1.3.1"
},
"autoload": {
"psr-4": {
"Hawkbit\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Hawkbit\\Tests\\": "tests/"
},
"files": [
"tests/TestAsset/Functions.php",
"tests/TestAsset/SapiResponse.php"
]
},
"provide": {
"psr/container-implementation": "~1.0",
"psr/http-message-implementation": "~1.0",
"psr/log-implementation": "~1.0"
},
"suggest": {
"symfony/http-kernel": "Dependency of symfony http foundation adapter",
"symfony/psr-http-message-bridge": "Dependency of symfony http foundation adapter",
"zendframework/zend-stratigility": "Dependency of stratigility middleware adapter"
},
"scripts": {
"test": [
"cd vendor/phpunit/phpunit",
"phpunit --configuration phpunit.xml"
]
}
}