-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (37 loc) · 1.03 KB
/
composer.json
File metadata and controls
38 lines (37 loc) · 1.03 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
{
"name": "morphable/micro",
"description": "micro framework",
"minimum-stability": "stable",
"license": "MIT",
"require": {
"php": "^7.1",
"psr/container": "^1.0",
"psr/http-message": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-server-handler": "^1.0",
"psr/http-server-middleware": "^1.0"
},
"require-dev": {
"php": "^7.2",
"phpunit/phpunit" : ">=5.4.3",
"squizlabs/php_codesniffer": "^2.3",
"nyholm/psr7": "^1.2",
"nyholm/psr7-server": "^0.4.1",
"league/container": "^3.3"
},
"autoload": {
"psr-4": {
"Morphable\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Test\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"check-style": "phpcs -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests",
"fix-style": "phpcbf -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests"
}
}