-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 1.1 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
{
"name": "geekish/slimbox",
"type": "library",
"description": "Slim Framework with Unbox container",
"keywords": [
"geekish",
"slimbox"
],
"homepage": "https://github.com/geekish/slimbox",
"license": "MIT",
"authors": [
{
"name": "Hannah Warmbier",
"email": "[email protected]",
"homepage": "https://github.com/geekish",
"role": "Developer"
}
],
"require": {
"php": "^5.6|^7.0",
"mindplay/unbox": "^2.0",
"slim/slim": "^3.5"
},
"require-dev": {
"phpunit/phpunit": "^5.7|^6.0",
"satooshi/php-coveralls": "^1.0",
"squizlabs/php_codesniffer": "^2.7"
},
"autoload": {
"psr-4": {
"Geekish\\Slimbox\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Geekish\\Slimbox\\": "tests"
}
},
"scripts": {
"checkcs": "./vendor/bin/phpcs",
"fixcs": "./vendor/bin/phpcbf",
"test": "./vendor/bin/phpunit"
},
"config": {
"sort-packages": true
}
}