-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
69 lines (69 loc) · 3.22 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
{
"name": "morpht/mdt",
"description": "Morpht Development Tools",
"type": "project",
"keywords": [
"automation",
"development",
"deployment",
"drupal"
],
"license": "GPL-2.0-only",
"authors": [
{
"name": "Morpht",
"email": "[email protected]"
}
],
"conflict": {
"drupal/core": "<10"
},
"suggest": {
"pantheon-systems/drupal-integrations": "Required for pantheon settings configuration file."
},
"extra": {
"drupal-scaffold": {
"file-mapping": {
"[project-root]/.editorconfig": false,
"[web-root]/sites/default/settings.php": {
"mode": "replace",
"path": "assets/drupal10/settings.php",
"overwrite": false
},
"[web-root]/sites/default/settings/settings.pantheon.php": "assets/pantheon/settings.pantheon.php",
"[web-root]/sites/default/settings/pantheon-preproduction-services.yml": "assets/pantheon/pantheon-preproduction-services.yml",
"[web-root]/sites/default/settings/pantheon-production-services.yml": "assets/pantheon/pantheon-production-services.yml",
"[web-root]/sites/default/settings/settings.main.php": "assets/drupal10/settings.main.php",
"[web-root]/sites/default/settings/settings.dev.php": "assets/drupal10/settings.dev.php",
"[web-root]/sites/default/settings/settings.lando.php": "assets/drupal10/settings.lando.php",
"[web-root]/sites/default/settings/settings.live.php": "assets/drupal10/settings.live.php",
"[web-root]/sites/default/settings/settings.test.php": "assets/drupal10/settings.test.php",
"[web-root]/sites/default/settings/settings.local.php": {
"path": "assets/drupal10/settings.local.php",
"overwrite": false
},
".github/scripts/build.sh": "assets/github-actions/scripts/build.sh",
".github/scripts/synctags.sh": "assets/github-actions/scripts/synctags.sh",
".github/workflows/pantheon_deploy.yml": "assets/github-actions/workflows/pantheon_deploy.yml",
".github/workflows/synctags.yml": "assets/github-actions/workflows/synctags.yml",
"[web-root]/sites/aliases.php": {
"path": "assets/drupal10/aliases.php",
"overwrite": false
},
".lando/fresh-install.sh": "assets/lando/fresh-install.sh",
".lando/setup_terminus.sh": "assets/lando/setup_terminus.sh",
".lando/verify_mac_ssh_socket.sh": "assets/lando/verify_mac_ssh_socket.sh",
".gitignore": "assets/misc/gitignore",
"pantheon.upstream.yml": {
"path": "assets/pantheon/pantheon.upstream.yml",
"overwrite": false
},
"pantheon.yml": {
"path": "assets/pantheon/pantheon.yml",
"overwrite": false
},
"[web-root]/private/scripts/deploy_after.php": "assets/misc/deploy_after.php"
}
}
}
}