-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
82 lines (82 loc) · 4 KB
/
composer.json
File metadata and controls
82 lines (82 loc) · 4 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
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
{
"name": "morpht/mdt",
"description": "Morpht Development Tools",
"type": "project",
"keywords": [
"automation",
"development",
"deployment",
"drupal"
],
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Morpht",
"email": "murray@morpht.com"
}
],
"require": {
"drupal/core-composer-scaffold": "^11"
},
"conflict": {
"drupal/core": "<11"
},
"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/drupal11/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/drupal11/settings.main.php",
"[web-root]/sites/default/settings/settings.ci.php": "assets/drupal11/settings.ci.php",
"[web-root]/sites/default/settings/settings.dev.php": "assets/drupal11/settings.dev.php",
"[web-root]/sites/default/settings/settings.lando.php": "assets/drupal11/settings.lando.php",
"[web-root]/sites/default/settings/settings.live.php": "assets/drupal11/settings.live.php",
"[web-root]/sites/default/settings/settings.test.php": "assets/drupal11/settings.test.php",
"[web-root]/sites/default/settings/settings.local.php": {
"path": "assets/drupal11/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/drupal11/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",
"[web-root]/sites/default/settings/settings.ddev.php": "assets/drupal11/settings.ddev.php",
".ddev/commands/web/fresh-install": "assets/ddev/fresh-install.sh",
".ddev/scripts/setup_terminus.sh": "assets/ddev/setup_terminus.sh",
".ddev/templates/settings.local.php": {
"path": "assets/drupal11/settings.local.php",
"overwrite": false
},
".ddev/commands/web/.gitignore": "assets/ddev/commands-web-gitignore",
".ddev/scripts/.gitignore": "assets/ddev/scripts-gitignore",
".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"
}
}
}
}