-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
95 lines (95 loc) · 3.15 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
{
"minimum-stability": "dev",
"prefer-stable": true,
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
},
{
"type": "vcs",
"url": "https://github.com/kporras07/BehatExtension"
}
],
"require": {
"wikimedia/composer-merge-plugin": "dev-master",
"kporras07/composer-symlinks": "dev-master",
"composer/installers": "^1.3",
"drupal-composer/drupal-scaffold": "^2.3",
"cweagans/composer-patches": "~1.0",
"drupal/core": "~8.6",
"drupal/admin_toolbar": "^2.2",
"drupal/adminimal_admin_toolbar": "1.5",
"drupal/config_filter": "^1.4",
"drupal/config_split": "^1.4",
"drupal/ctools": "3.0",
"drupal/default_content": "^1.0",
"drupal/devel": "^2.0",
"drupal/geolocation": "1.11",
"drupal/graphql": "3.0-beta5",
"drupal/rabbit_hole": "^1.0",
"drupal/smtp": "^1.0",
"drupal/image_style_quality": "^1.3"
},
"require-dev": {
"TestDrupal/BehatExtension": "dev-update",
"drush/drush": "~9.0",
"squizlabs/php_codesniffer": "2.5.1",
"drupal/coder": "8.2.5",
"behat/behat": "3.4.0",
"drupal/console": "~1.0"
},
"conflict": {
"drupal/drupal": "*"
},
"autoload": {
"classmap": ["composer-scripts/composer/ScriptHandler.php"]
},
"scripts": {
"drupal-scaffold": "DrupalComposer\\DrupalScaffold\\Plugin::scaffold",
"pre-install-cmd": [
"DrupalProject\\composer\\ScriptHandler::checkComposerVersion"
],
"pre-update-cmd": [
"DrupalProject\\composer\\ScriptHandler::checkComposerVersion"
],
"post-install-cmd": [
"DrupalProject\\composer\\ScriptHandler::createRequiredFiles",
"Kporras07\\ComposerSymlinks\\ScriptHandler::createSymlinks",
"DrupalComposer\\DrupalScaffold\\Plugin::scaffold"
],
"post-update-cmd": [
"DrupalProject\\composer\\ScriptHandler::createRequiredFiles",
"Kporras07\\ComposerSymlinks\\ScriptHandler::createSymlinks"
]
},
"extra": {
"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"]
},
"symlinks": {
"root/.htaccess": "web/.htaccess",
"root/.gitignore": "web/.gitignore",
"settings/settings.php": "web/sites/default/settings.php",
"settings/settings.local.php": "web/sites/default/settings.local.php",
"settings/settings.secret.php": "web/sites/default/settings.secret.php",
"settings/services.yml": "web/sites/default/services.yml",
"files": "web/sites/default/files",
"config": "web/sites/default/config",
"modules/custom": "web/modules/custom",
"themes/custom": "web/themes/custom",
"profiles": "web/profiles/custom"
},
"drupal-scaffold": {
"source":
"https://raw.githubusercontent.com/pantheon-systems/drops-8/{version}/{path}",
"includes": ["sites/default/settings.pantheon.php"]
},
"patches-file": "composer.patches.json"
}
}