forked from drevops/behat-steps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
59 lines (59 loc) · 1.75 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
{
"name": "drevops/behat-steps",
"type": "library",
"description": "Collection of steps for Behat",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Alex Skrypnyk",
"email": "[email protected]",
"homepage": "https://drevops.com",
"role": "Maintainer"
}
],
"homepage": "https://github.com/drevops/behat-steps",
"support": {
"issues": "https://github.com/drevops/behat-steps/issues",
"source": "https://github.com/drevops/behat-steps"
},
"require": {
"php": ">=8.1",
"behat/behat": "^3",
"behat/mink": ">=1.11",
"behat/mink-selenium2-driver": ">=1.7",
"drupal/drupal-extension": "^5"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^1",
"drevops/behat-screenshot": "^1.5",
"drupal/coder": "^8.3",
"dvdoug/behat-code-coverage": "^5.3",
"mglaman/phpstan-drupal": "^1.2",
"palantirnet/drupal-rector": "^0.20",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpcompatibility/php-compatibility": "^9.3",
"phpmd/phpmd": "^2.13",
"phpspec/prophecy-phpunit": "^2.0",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"DrevOps\\BehatSteps\\": "src/"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
}
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev",
"dev-main": "1.x-dev"
}
}
}