-
Notifications
You must be signed in to change notification settings - Fork 20
/
composer.json
97 lines (97 loc) · 2.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "drush-ops/behat-drush-endpoint",
"description": "Drush commandfile for use with drupal/drupal-driver.",
"type": "drupal-drush",
"keywords": ["drush","behat","testing"],
"homepage": "https://github.com/drush-ops/behat-drush-endpoint",
"license": "GPL-2.0-or-later",
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
}
],
"require": {
"php": ">=5.3.0",
"drupal/drupal-driver": "*"
},
"require-dev": {
"composer/installers": "^1.2",
"drupal/core-composer-scaffold": "^8.8.1",
"drupal/core": "^8.8",
"pantheon-systems/drupal-integrations": "^8",
"drush/drush": "^8.3.3 || ^10.2.2",
"g1a/composer-test-scenarios": "^3.0.2",
"phpunit/phpunit": "^6.5",
"symfony/filesystem": "^3.4.28",
"webflo/drupal-finder": "^1.1.0",
"webmozart/path-util": "^2.3",
"zaporylie/composer-drupal-optimizations": "^1.0.2"
},
"conflict": {
"drush/drush": "<8.2 || >=9.0 <9.6.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"platform": {
"php": "7.2"
},
"sort-packages": true
},
"autoload-dev": {
"psr-4": {
"TestUtils\\": "tests/src/"
}
},
"scripts": {
"test": "phpunit --color=always",
"drush": "drush"
},
"extra": {
"installer-paths": {
"sut/web/core": ["type:drupal-core"],
"sut/web/libraries/{$name}": ["type:drupal-library"],
"sut/web/modules/contrib/{$name}": ["type:drupal-module"],
"sut/web/profiles/contrib/{$name}": ["type:drupal-profile"],
"sut/web/themes/contrib/{$name}": ["type:drupal-theme"],
"drush/Commands/{$name}": ["type:drupal-drush"]
},
"drupal-scaffold": {
"allowed-packages": [
"pantheon-systems/drupal-integrations"
],
"locations": {
"web-root": "./sut/web"
},
"file-mapping": {
"[project-root]/.editorconfig": false
}
},
"scenarios": {
"drush8": {
"require-dev": {
"drush/drush": "^8.3.3"
},
"config": {
"platform": {
"php": "7.0.8"
}
}
},
"drupal9": {
"require-dev": {
"drupal/core-recommended": "^9@rc",
"drupal/core": "^9@rc",
"drupal/core-composer-scaffold": "^9@rc",
"pantheon-systems/drupal-integrations": "^9"
},
"config": {
"platform": {
"php": "7.3"
}
}
}
}
}
}