This repository was archived by the owner on Apr 21, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
114 lines (114 loc) · 2.9 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "acquia/acquia-cms-project",
"type": "project",
"description": "Project template for Drupal 9 sites built with the Acquia CMS distribution.",
"homepage": "https://github.com/acquia/acquia-cms-project",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Michael Sherron",
"email": "[email protected]",
"role": "Author"
},
{
"name": "Acquia Engineering",
"email": "[email protected]",
"role": "Maintainer"
}
],
"require": {
"php": "^7.3 || ^8.0",
"acquia/acquia_cms": "^1.0",
"acquia/drupal-environment-detector": "^1",
"acquia/memcache-settings": "^1",
"cweagans/composer-patches": "^1.6.0",
"drupal/core-composer-scaffold": "^9",
"drush/drush": "^10",
"oomphinc/composer-installers-extender": "^1.1 || ^2"
},
"require-dev": {},
"config": {
"process-timeout": 0,
"sort-packages": true
},
"extra": {
"composer-exit-on-patch-failure": true,
"drupal-scaffold": {
"allowed-packages": [
"drupal/core",
"acquia/acquia_cms"
],
"file-mapping": {
"[profile-root]/.editorconfig": false,
"[profile-root]/.gitattributes": false,
"[profile-root]/.travis.yml": false,
"[profile-root]/acquia-pipelines.yml": false
},
"gitignore": true,
"locations": {
"profile-root": "docroot/profiles/contrib/acquia_cms",
"web-root": "docroot/"
}
},
"enable-patching": true,
"installer-paths": {
"docroot/core": [
"type:drupal-core"
],
"docroot/libraries/{$name}": [
"type:drupal-library",
"type:bower-asset",
"type:npm-asset"
],
"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"
]
},
"installer-types": [
"bower-asset",
"npm-asset"
],
"patchLevel": {
"drupal/core": "-p2"
}
},
"repositories": {
"drupal": {
"type": "composer",
"url": "https://packages.drupal.org/8"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"pre-install-cmd": [
"composer run-script post-update-cmd"
],
"post-install-cmd": [
"composer run-script post-update-cmd"
],
"pre-update-cmd": [
"@putenv COMPOSER_MEMORY_LIMIT=2G",
"bash ./scripts/deprecated-warning"
],
"post-update-cmd": [
"composer run-script remove-git-submodules"
],
"acms:install": [
"bash ./docroot/profiles/contrib/acquia_cms/install-acms"
],
"nuke": [
"rm -rf docroot vendor composer.lock"
],
"remove-git-submodules": "find . -mindepth 2 -type d -name .git | xargs rm -rf"
}
}