-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 1.38 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
{
"name": "oxidmod/rest-bundle",
"description": "Rest bundle based on Fractal library",
"license": "MIT",
"type": "symfony-bundle",
"authors": [
{
"name": "Oxidmod",
"email": "[email protected]"
}
],
"require": {
"php": "^7.0",
"league/fractal": "^0.16.0"
},
"autoload": {
"psr-4": {
"Oxidmod\\RestBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Oxidmod\\RestBundle\\Tests\\": "tests/"
}
},
"require-dev": {
"symfony/framework-bundle": "~3.0",
"phpunit/phpunit": "^6.2",
"satooshi/php-coveralls": "^1.0",
"squizlabs/php_codesniffer": "^3.0",
"matthiasnoback/symfony-dependency-injection-test": "^2.1",
"infection/infection": "dev-master"
},
"scripts": {
"test": "php ./vendor/bin/phpunit -c ./tests/phpunit.xml ./tests",
"infection": "php ./vendor/bin/infection --min-msi=100 --min-covered-msi=100 --threads=4",
"cover": "php ./vendor/bin/phpunit -c ./tests/phpunit.xml --coverage-clover ./var/phpunit/clover.xml ./tests",
"coveralls": "php ./vendor/bin/coveralls -v --exclude-no-stmt",
"check-style": "php ./vendor/bin/phpcs -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 ./src",
"fix-style": "php ./vendor/bin/phpcbf -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 ./src"
}
}