-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
93 lines (92 loc) · 2.35 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
{
"name": "zivtech/drip-managed8",
"description": "A project template for Drupal 8 sites on Managed Hosting with a docroot directory and modified .gitignore to allow all site files to be committed and tagged for release.",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Jason Moore",
"homepage": "https://www.zivtech.com",
"role": "Maintainer"
}
],
"repositories": {
"drupal": {
"type": "composer",
"url": "https://packages.drupal.org/8"
},
"asset-packagist": {
"type": "composer",
"url": "https://asset-packagist.org"
}
},
"require": {
"composer/installers": "^1.10.0",
"cweagans/composer-patches": "^1.7",
"drupal/core-composer-scaffold": "^8.9",
"drupal/core-project-message": "^8.9",
"drupal/core-recommended": "^8.9",
"drush/drush": "^10"
},
"require-dev": {
"drupal/core-dev": "^8.9"
},
"conflict": {
"drupal/drupal": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true
},
"extra": {
"drupal-scaffold": {
"locations": {
"web-root": "docroot/"
},
"file-mapping": {
"[web-root]/sites/default/default.services.yml": {
"mode": "replace",
"path": "docroot/core/assets/scaffold/files/default.services.yml",
"overwrite": false
},
"[web-root]/sites/default/default.settings.php": {
"mode": "replace",
"path": "docroot/core/assets/scaffold/files/default.settings.php",
"overwrite": false
}
},
"gitignore": true
},
"installer-paths": {
"docroot/core": [
"type:drupal-core"
],
"docroot/libraries/{$name}": [
"type:drupal-library"
],
"docroot/modules/contrib/{$name}": [
"type:drupal-module"
],
"docroot/profiles/contrib/{$name}": [
"type:drupal-profile"
],
"docroot/themes/contrib/{$name}": [
"type:drupal-theme"
],
"drush/Commands/contrib/{$name}": [
"type:drupal-drush"
],
"docroot/modules/custom/{$name}": [
"type:drupal-custom-module"
],
"docroot/themes/custom/{$name}": [
"type:drupal-custom-theme"
]
},
"enable-patching": true,
"patchLevel": {
"drupal/core": "-p2"
},
"patches": {}
}
}