forked from there4/slim-test-helpers
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
47 lines (47 loc) · 1.37 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": "there4/slim-test-helpers",
"description": "Integration testing helpers for the Slim Framework",
"keywords": ["slim"],
"homepage": "https://github.com/there4/slim-test-helpers",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Craig Davis",
"email": "[email protected]"
},
{
"name": "Guillermo A. Fisher",
"homepage": "http://guillermoandraefisher.com"
}
],
"support": {
"issues": "https://github.com/there4/slim-test-helpers/issues",
"source": "https://github.com/there4/slim-test-helpers"
},
"require": {
"slim/slim": "~3.1",
"phpunit/phpunit": "^4.8|5.*|6.*",
"phpunit/dbunit": "2.*|3.*",
"illuminate/database": ">=4.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "2.*",
"codeclimate/php-test-reporter": "^0.3"
},
"autoload": {
"psr-0": {
"There4": "src/"
}
},
"autoload-dev": {
"psr-0": {
"There4Test": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit --verbose --coverage-text",
"sniff": "vendor/bin/phpcs --standard=PSR2 --extensions=php src tests",
"fix": "vendor/bin/phpcbf --standard=PSR2 --extensions=php controllers models routes src tests"
}
}