-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.65 KB
/
composer.json
File metadata and controls
54 lines (54 loc) · 1.65 KB
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
{
"name": "upsun/drupal-scaffold",
"description": "Configuration additions to add Upsun hosting capabilities to an existing Drupal project",
"type": "library",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Dan Morrison",
"email": "dman@coders.co.nz"
}
],
"require": {
"drupal/core-composer-scaffold": "*",
"drupal/core-recommended": "11.x",
"drush/drush": "*",
"drupal/redis": "*"
},
"extra": {
"drupal-scaffold": {
"file-mapping": {
"[project-root]/.gitignore": {
"path": "assets/common/.gitignore",
"overwrite": false
},
"[project-root]/.environment": {
"path": "assets/common/.environment",
"overwrite": false
},
"[project-root]/config/sync/.htaccess": {
"path": "assets/common/config/sync/.htaccess",
"overwrite": true
},
"[project-root]/.upsun/config.yaml": {
"path": "assets/common/.upsun/config.yaml",
"overwrite": false
},
"[project-root]/drush/platformsh_deploy_drupal.sh": {
"path": "assets/common/drush/platformsh_deploy_drupal.sh",
"overwrite": true
},
"[web-root]/sites/default/settings.php": {
"append": "assets/common/web/sites/default/settings.php.append",
"overwrite": false,
"force-append": true,
"default": "assets/common/web/sites/default/default.settings.php"
},
"[web-root]/sites/default/settings.platformsh.php": {
"path": "assets/common/web/sites/default/settings.platformsh.php",
"overwrite": true
}
}
}
}
}