-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
58 lines (58 loc) · 1.71 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
48
49
50
51
52
53
54
55
56
57
58
{
"name": "drevops/behat-format-progress-fail",
"description": "Behat output formatter to show progress as TAP and fails inline.",
"license": "GPL-2.0-or-later",
"type": "library",
"authors": [
{
"name": "Alex Skrypnyk",
"email": "alex@drevops.com"
}
],
"homepage": "https://github.com/drevops/behat-format-progress-fail",
"support": {
"issues": "https://github.com/drevops/behat-format-progress-fail/issues",
"source": "https://github.com/drevops/behat-format-progress-fail"
},
"require": {
"php": ">=8.1",
"behat/behat": "^3.18"
},
"require-dev": {
"behat/mink": "^1.8",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"drevops/behat-phpserver": "^2",
"ergebnis/composer-normalize": "^2.45",
"escapestudios/symfony2-coding-standard": "^3",
"phpstan/phpstan": "^2",
"phpunit/phpunit": "^10.0",
"rector/rector": "^2",
"squizlabs/php_codesniffer": "^3",
"symfony/process": "^6 || ^7.0",
"drupal/coder": "^8.3"
},
"autoload": {
"psr-0": {
"DrevOps\\BehatFormatProgressFail": "src/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true
}
},
"scripts": {
"lint": [
"phpcs",
"phpstan",
"rector --clear-cache --dry-run"
],
"lint-fix": [
"rector --clear-cache",
"phpcbf"
],
"reset": "rm -Rf vendor vendor-bin composer.lock",
"test": "vendor/bin/behat"
}
}