forked from sasezaki/Backbeard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
35 lines (35 loc) · 923 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
{
"name":"sasezaki/backbeard",
"description":"yet another DSLish minimum oriented framework for PHP",
"license": "BSD-3-Clause",
"keywords": ["router", "psr-7", "psr7"],
"authors": [
{
"name": "sasezaki",
"email": "sasezaki@gmail.com",
"homepage": "http://github.com/sasezaki",
"role": "Developer"
}
],
"require": {
"php": ">=5.5.0",
"psr/http-message": "^1.0.0",
"nikic/fast-route": "^0.6",
"zendframework/zend-diactoros": "~1.0",
"struggle-for-php/sfp-stream-view": "^0.0.2"
},
"require-dev": {
"phpunit/phpunit": "~4.4",
"satooshi/php-coveralls": "~0.6"
},
"autoload": {
"psr-4":{
"Backbeard\\":"src/Backbeard"
}
},
"autoload-dev": {
"psr-4":{
"BackbeardTest\\":"tests"
}
}
}