forked from jhedstrom/drupalextension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
76 lines (76 loc) · 1.93 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
76
{
"name": "drupal/drupal-extension",
"type": "behat-extension",
"description": "Drupal extension for Behat",
"keywords": ["drupal", "web", "test"],
"homepage": "http://drupal.org/project/drupalextension",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Jonathan Hedstrom",
"email": "jhedstrom@gmail.com"
},
{
"name": "Melissa Anderson",
"homepage": "https://github.com/eliza411"
},
{
"name": "Pieter Frenssen",
"homepage": "https://github.com/pfrenssen"
}
],
"prefer-stable": true,
"require": {
"behat/behat": "~3.2",
"behat/mink": "~1.5",
"friends-of-behat/mink-extension": "^2",
"behat/mink-goutte-driver": "~1.0",
"behat/mink-selenium2-driver": "~1.1",
"drupal/drupal-driver": "^2.1.0",
"symfony/browser-kit": "^3.4|~4.4",
"symfony/dependency-injection": "~3.0|~4.4",
"symfony/translation": "^3.4|~4.4"
},
"require-dev": {
"composer/installers": "^1.2",
"drupal/coder": "^8.3",
"drupal/core-composer-scaffold": "^9.1",
"drupal/core-recommended": "^9.1",
"drush/drush": "^10.5",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpspec/phpspec": "^4.0 || ^6.0 || ^7.0"
},
"scripts": {
"test": [
"composer validate --no-interaction",
"parallel-lint src spec features fixtures",
"phpcs --standard=./phpcs-ruleset.xml -p",
"phpcs --standard=./phpcs-drupal-ruleset.xml -p",
"npm test",
"phpspec run -f pretty --no-interaction"
]
},
"autoload": {
"psr-0": {
"Drupal\\Drupal": "src/",
"Drupal\\Exception": "src/",
"Drupal\\DrupalExtension": "src/",
"Drupal\\MinkExtension": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "4.3.x-dev"
},
"installer-paths": {
"drupal/core": [
"type:drupal-core"
]
},
"drupal-scaffold": {
"locations": {
"web-root": "drupal/"
}
}
}
}