-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
75 lines (75 loc) · 2.34 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "drevops/behat-screenshot",
"description": "Behat extension and step definitions to create HTML and image screenshots on demand or when tests fail",
"license": "GPL-2.0-or-later",
"type": "library",
"authors": [
{
"name": "Alex Skrypnyk",
"email": "[email protected]",
"homepage": "https://drevops.com",
"role": "Maintainer"
}
],
"require": {
"php": ">=8.2",
"behat/behat": "^3.13.0",
"friends-of-behat/mink-extension": "^2.7",
"symfony/finder": "^6.4 || ^7.0",
"symfony/http-client": "^6.0 || ^7.0"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.8",
"behat/mink-browserkit-driver": "^2.2",
"dantleech/gherkin-lint": "^0.2.3",
"dealerdirect/phpcodesniffer-composer-installer": "^1",
"dmore/behat-chrome-extension": "^1.4",
"drevops/behat-phpserver": "^2.0",
"drupal/coder": "^8.3",
"dvdoug/behat-code-coverage": "^5.3",
"ergebnis/composer-normalize": "^2.44",
"escapestudios/symfony2-coding-standard": "^3",
"lullabot/mink-selenium2-driver": "^1.7",
"lullabot/php-webdriver": "^2.0.4",
"mikey179/vfsstream": "^1.6",
"opis/closure": "^4.0",
"phpstan/phpstan": "^2",
"phpunit/phpunit": "^11",
"rector/rector": "^2",
"symfony/process": "^6.4 || ^7.0"
},
"autoload": {
"psr-0": {
"DrevOps\\BehatScreenshot": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DrevOps\\BehatScreenshot\\Tests\\": "tests/phpunit"
}
},
"config": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true
},
"sort-packages": true
},
"scripts": {
"lint": [
"phpcs",
"phpstan",
"rector --clear-cache --dry-run",
"gherkinlint lint tests/behat/features"
],
"lint-fix": [
"rector --clear-cache",
"phpcbf"
],
"reset": "rm -Rf vendor vendor-bin composer.lock",
"test": "phpunit --no-coverage",
"test-bdd": "behat --colors",
"test-coverage": "phpunit"
}
}