forked from drevops/behat-format-progress-fail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
36 lines (36 loc) · 1.07 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
{
"name": "integratedexperts/behat-format-progress-fail",
"description": "Behat context for formatting steps test.",
"type": "library",
"license": "GPL-2.0+",
"authors": [
{
"name": "Alex Skrypnyk",
"email": "alex.designworks@gmail.com"
},
{
"name": "Alexander Sharkov",
"email": "blade.didan@gmail.com"
}
],
"require": {
"behat/behat": ">=3.3.1"
},
"require-dev": {
"squizlabs/php_codesniffer": "2.*",
"escapestudios/symfony2-coding-standard": "~2.0",
"symfony/process": "~2.1|~3.0",
"phpunit/phpunit": "~4.5"
},
"autoload": {
"psr-0": {
"IntegratedExperts\\BehatFormatProgressFail": "src/"
}
},
"scripts": {
"cs": "./vendor/bin/phpcs --runtime-set installed_paths $(pwd)/vendor/escapestudios/symfony2-coding-standard --colors -s -p",
"cbf": "./vendor/bin/phpcbf --runtime-set installed_paths $(pwd)/vendor/escapestudios/symfony2-coding-standard --colors",
"test": "vendor/bin/behat --colors --format=progress_fail --strict --colors",
"cleanup": "rm -Rf $(pwd)/vendor;"
}
}