-
Notifications
You must be signed in to change notification settings - Fork 36
/
composer.json
38 lines (38 loc) · 1.2 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
{
"name": "sokil/php-vast",
"description": "Generator and parser for VAST documents",
"authors": [
{
"name": "Dmytro Sokil",
"email": "dmytro.sokil@gmail.com"
}
],
"license": "MIT",
"require": {
"php": ">=7.1.3",
"ext-dom": "*",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": ">=7.5.20",
"php-coveralls/php-coveralls": "^2.1",
"squizlabs/php_codesniffer": "^3.4.2"
},
"autoload": {
"psr-4": {
"Sokil\\Vast\\": ["src/"]
}
},
"autoload-dev": {
"psr-4": {
"Sokil\\Vast\\": ["tests/"]
}
},
"scripts": {
"test": "./vendor/bin/phpunit -c ./tests/phpunit.xml",
"cover": "./vendor/bin/phpunit -c ./tests/phpunit.xml --coverage-clover build/logs/clover.xml",
"coveralls": "./vendor/bin/php-coveralls -v",
"check-style": "./vendor/bin/phpcs -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src",
"fix-style": "./vendor/bin/phpcbf -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src"
}
}