-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
59 lines (59 loc) · 1.74 KB
/
composer.json
File metadata and controls
59 lines (59 loc) · 1.74 KB
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
59
{
"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.29.0"
},
"require-dev": {
"behat/mink": "^1.13.0",
"dealerdirect/phpcodesniffer-composer-installer": "^1.2.0",
"drevops/behat-phpserver": "^2",
"ergebnis/composer-normalize": "^2.50.0",
"escapestudios/symfony2-coding-standard": "^3",
"phpstan/phpstan": "^2",
"phpunit/phpunit": "^11.5.55",
"rector/rector": "^2",
"squizlabs/php_codesniffer": "^3",
"symfony/process": "^6 || ^7.0 || ^8.0",
"drupal/coder": "^8.3.31",
"drevops/phpcs-standard": "^0.7"
},
"autoload": {
"psr-0": {
"DrevOps\\BehatFormatProgressFail": "src/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true
}
},
"scripts": {
"lint": [
"phpcs",
"phpstan",
"rector --dry-run"
],
"lint-fix": [
"rector",
"phpcbf"
],
"reset": "rm -Rf vendor vendor-bin composer.lock",
"test": "vendor/bin/behat"
}
}