forked from drevops/behat-steps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
51 lines (51 loc) · 1.49 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
{
"name": "drevops/behat-steps",
"type": "library",
"description": "Collection of Behat traits",
"license": "GPL-2.0-or-later",
"autoload": {
"psr-4": {
"DrevOps\\BehatSteps\\": "src/",
"DrevOps\\BehatSteps\\D7\\": "src/D7/"
}
},
"require": {
"behat/behat": "^3",
"drupal/drupal-extension": "dev-feature/drupal-10 as 4.2.1-dev",
"cweagans/composer-patches": "^1.7"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.7",
"drupal/coder": "^8.3",
"drevops/behat-screenshot": "^1",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpcompatibility/php-compatibility": "^9.3",
"phpunit/phpunit": "^8.5 || ^9.0",
"mglaman/drupal-check": "^1",
"palantirnet/drupal-rector": "^0.13"
},
"repositories": {
"drupal/drupal-driver": {
"type": "vcs",
"url": "https://github.com/drevops/DrupalDriver"
},
"drupal/drupal-extension": {
"type": "vcs",
"url": "https://github.com/drevops/drupalextension"
}
},
"prefer-stable": true,
"minimum-stability": "dev",
"extra": {
"enable-patching": true,
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"config": {
"allow-plugins": {
"cweagans/composer-patches": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}