-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
42 lines (42 loc) · 1015 Bytes
/
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
{
"name": "gianarb/penny",
"description": "Another PHP framework made of other components",
"keywords": [
"middleware",
"container",
"route",
"http-flow"
],
"require": {
"php": "^5.6|^7.0",
"nikic/fast-route": "~0.6",
"php-di/php-di": "~5.0",
"zendframework/zend-diactoros": "~1.0",
"zendframework/zend-eventmanager": "~2.5.0",
"doctrine/annotations": "^1.2",
"zendframework/zend-stdlib": "~2.5"
},
"require-dev": {
"phpunit/phpunit": "~5.0",
"symfony/http-foundation": "~3.0",
"cakephp/event": "~3.0"
},
"license": "MIT",
"authors": [
{
"name": "Gianluca Arbezzano",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Penny\\": "./src"
}
},
"autoload-dev": {
"psr-4": {
"PennyTest\\": "./tests",
"TestApp\\": "./tests/app"
}
}
}