-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
64 lines (64 loc) · 1.82 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
{
"name": "oneshoe/drupal-codeception",
"description": "Extension to the Codeception toolset for Drupal testing.",
"type": "package",
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
}
],
"require": {
"drush/drush": ">=10.3",
"guncha25/drupal-codeception": "^10.0",
"drupal/test_users": "^1.0@alpha",
"ext-json": "*"
},
"require-dev": {
"codeception/module-asserts": "^3.0",
"codeception/module-db": "^3.1",
"composer/installers": "^1.2",
"composer/xdebug-handler": "^3.0",
"drupal/core-composer-scaffold": "^10",
"drupal/core-recommended": "^10"
},
"license": "GPL-2.0",
"authors": [
{
"name": "Eelke Blok",
"email": "eelke.blok@oneshoe.nl"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Codeception\\": "src/Codeception",
"Pages\\": "src/Pages"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/installers": true,
"drupal/core-composer-scaffold": true
}
},
"extra": {
"drupal-scaffold": {
"locations": {
"web-root": "web/"
},
"allowed-packages": [
"drupal/core"
]
},
"installer-paths": {
"web/core": ["type:drupal-core"],
"web/libraries/{$name}": ["type:drupal-library"],
"web/modules/contrib/{$name}": ["type:drupal-module"],
"web/profiles/contrib/{$name}": ["type:drupal-profile"],
"web/themes/contrib/{$name}": ["type:drupal-theme"],
"drush/contrib/{$name}": ["type:drupal-drush"]
}
}
}