-
Notifications
You must be signed in to change notification settings - Fork 31
/
composer.json
34 lines (34 loc) · 1.03 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
{
"name": "there4/slim-unit-testing-example",
"description": "Unit Testing SlimPHP - Example Project",
"license": "MIT",
"authors": [
{
"name": "Craig Davis",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"indeyets/pake": "~1.99",
"shuber/curl": "dev-master",
"slim/slim": "2.4.*",
"slim/views": "0.1.*",
"there4/slim-test-helpers": "v0.9.6",
"twig/twig": "1.15.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "1.*",
"phpunit/phpunit": "4.*",
"indeyets/pake": "~1.99",
"codeclimate/php-test-reporter": "dev-master"
},
"autoload": {
"psr-0": {"There4": "lib/"}
},
"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"
}
}