-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (40 loc) · 1.02 KB
/
composer.json
File metadata and controls
40 lines (40 loc) · 1.02 KB
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
{
"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": ">=7.2.0",
"psr/http-message": "^1.0.0",
"nikic/fast-route": "^0.6",
"struggle-for-php/sfp-stream-view": "^0.1.0",
"psr/http-factory": "^1.0"
},
"require-dev": {
"zendframework/zend-diactoros": "^2",
"phpunit/phpunit": "^7",
"zendframework/zend-coding-standard": "~1.0.0"
},
"autoload": {
"psr-4":{
"Backbeard\\":"src/Backbeard"
}
},
"autoload-dev": {
"psr-4":{
"BackbeardTest\\":"tests"
}
},
"scripts": {
"cs-check": "phpcs",
"cs-fix": "phpcbf"
}
}