-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcomposer.json
More file actions
130 lines (130 loc) · 4.98 KB
/
Copy pathcomposer.json
File metadata and controls
130 lines (130 loc) · 4.98 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "acquia/drupal-cms-project",
"description": "Drupal with a bunch of useful stuff and a scaffold tailored to Acquia hosting.",
"type": "project",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Acquia Engineering",
"email": "engineering@acquia.org",
"role": "Maintainer"
}
],
"homepage": "https://github.com/acquia/drupal-cms-project",
"repositories": {
"drupal": {
"type": "composer",
"url": "https://packages.drupal.org/8"
}
},
"require": {
"acquia/drupal-environment-detector": "^1",
"acquia/drupal-recommended-settings": "^1",
"composer/composer": "^2.8",
"composer/installers": "^2.3",
"cweagans/composer-patches": "^2.0",
"drupal/archimedes": "^1.0",
"drupal/byte": "^1.0.3",
"drupal/caresphere": "^1.2",
"drupal/checklistapi": "^2.1",
"drupal/config_sync_without_site_uuid": "^1.0@beta",
"drupal/convene": "^1.2",
"drupal/convivial_gov": "^1.1",
"drupal/core-composer-scaffold": "^11.4",
"drupal/core-recipe-unpack": "^11.4",
"drupal/core-recommended": "^11.4",
"drupal/core-vendor-hardening": "^11.4",
"drupal/drupal_cms_accessibility_tools": "^2",
"drupal/drupal_cms_ai": "^2",
"drupal/drupal_cms_forms": "^2",
"drupal/drupal_cms_google_analytics": "^2",
"drupal/drupal_cms_installer": "^2.1@beta",
"drupal/drupal_cms_seo_tools": "^2",
"drupal/drupal_cms_site_template_base": "^1@dev",
"drupal/drupal_cms_starter": "^2",
"drupal/haven": "^1.0",
"drupal/healthcare": "^1.0",
"drupal/local": "^1.0",
"drupal/provus_edu": "^1.0",
"drupal/pulse": "^1.0",
"drupal/recipe_installer_kit": "^1.0.4",
"drupal/trash": "3.0.29",
"drupal/webform": "@beta",
"league/oauth2-client": "^2"
},
"require-dev": {
"drupal/core-dev": "^11",
"drush/drush": "^13"
},
"conflict": {
"drupal/drupal": "*"
},
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"allow-plugins": {
"acquia/drupal-recommended-settings": true,
"composer/installers": true,
"cweagans/composer-patches": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"drupal/core-composer-scaffold": true,
"drupal/core-project-message": true,
"drupal/core-recipe-unpack": true,
"drupal/core-vendor-hardening": true,
"drupal/site_template_helper": true,
"php-http/discovery": true,
"phpstan/extension-installer": true,
"symfony/runtime": true,
"tbachert/spi": true
},
"sort-packages": true,
"optimize-autoloader": true,
"audit": {
"ignore": ["PKSA-jj5t-2zs1-dcfm", "PKSA-gm5x-j3mz-71n9"]
}
},
"extra": {
"composer-exit-on-patch-failure": true,
"drupal-scaffold": {
"locations": {
"web-root": "docroot/"
},
"file-mapping": {
"[web-root]/sites/default/default.services.yml": {
"mode": "replace",
"overwrite": false,
"path": "docroot/core/assets/scaffold/files/default.services.yml"
},
"[web-root]/sites/default/default.settings.php": {
"mode": "replace",
"overwrite": false,
"path": "docroot/core/assets/scaffold/files/default.settings.php"
},
"[project-root]/recipes/README.txt": false,
"[web-root]/modules/README.txt": false,
"[web-root]/profiles/README.txt": false,
"[web-root]/themes/README.txt": false,
"[web-root]/sites/README.txt": false,
"[web-root]/sites/development.services.yml": false,
"[web-root]/sites/example.settings.local.php": false,
"[web-root]/sites/example.sites.php": false
}
},
"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/profiles/custom/{$name}": ["type:drupal-custom-profile"],
"recipes/contrib/{$name}": ["type:drupal-recipe"],
"docroot/themes/custom/{$name}": ["type:drupal-custom-theme"]
},
"patches": {}
},
"scripts": {
"post-create-project-cmd": "rm -rf .github/"
}
}