This repository has been archived by the owner on Nov 16, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 102
/
composer.json
150 lines (150 loc) · 5.62 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
{
"name": "acquia/lightning",
"type": "drupal-profile",
"description": "The best of Drupal, curated by Acquia",
"license": "GPL-2.0-or-later",
"require": {
"ext-dom": "*",
"composer/composer": "^1.10.22 || ^2.0.13",
"cweagans/composer-patches": "^1.7",
"drupal/acquia_connector": "^1.24-rc3 || ^2.0-rc1 || ^3",
"drupal/core": "~9.1.13",
"drupal/inline_entity_form": "^1.0-rc7",
"drupal/lightning_api": "^4.6",
"drupal/lightning_core": "^5",
"drupal/lightning_layout": "^2.10",
"drupal/lightning_media": "^4.6",
"drupal/lightning_workflow": "^3.16",
"drupal/page_manager": "^4.0-beta6",
"drupal/panelizer": "^5.0-beta3",
"drupal/pendo": "^1@alpha",
"drupal/profile_switcher": "^1.0-alpha5",
"drupal/search_api": "^1.17"
},
"require-dev": {
"composer/installers": "^1.9",
"drupal/core-composer-scaffold": "^9",
"drupal/core-dev": "^9",
"drupal/devel": "^4.1",
"drush/drush": ">=9.7",
"phpspec/prophecy-phpunit": "^2",
"weitzman/drupal-test-traits": "dev-master"
},
"config": {
"preferred-install": {
"drupal/core": "dist",
"drupal/lightning_*": "source"
}
},
"extra": {
"branch-alias": {
"dev-8.x-4.x": "4.x-dev"
},
"composer-exit-on-patch-failure": "true",
"drupal-scaffold": {
"file-mapping": {
"[project-root]/.editorconfig": false,
"[project-root]/.gitattributes": false,
"[web-root]/.csslintrc": false,
"[web-root]/INSTALL.txt": false,
"[web-root]/example.gitignore": false,
"[web-root]/modules/README.txt": false,
"[web-root]/profiles/README.txt": false,
"[web-root]/robots.txt": false,
"[web-root]/sites/README.txt": false,
"[web-root]/themes/README.txt": false,
"[web-root]/web.config": false
},
"locations": {
"web-root": "docroot/"
}
},
"drush": {
"services": {
"drush.services.yml": "^9 || ^10"
}
},
"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"
]
},
"installer-types": [
"bower-asset",
"npm-asset"
],
"patchLevel": {
"drupal/core": "-p2"
},
"patches": {
"drupal/core": {
"2869592 - Disabled update module shouldn't produce a status report warning": "https://www.drupal.org/files/issues/2020-02-07/2869592-remove-update-warning-34.patch",
"[subprofile support] 1356276 - Allow profiles to define a base/parent profile and load them in the correct order / 2914389 - Allow profiles to exclude dependencies of their parent": "https://www.drupal.org/files/issues/2021-05-25/3143958-15-subprofile-support-9.1.x.patch",
"REMOVE: 2031261 - Fix SQLite variable limit": "https://www.drupal.org/files/issues/2020-04-01/2031261-118.patch",
"REMOVE: Allow installation profile to be changed from Lightning during config sync": "https://www.drupal.org/files/issues/2021-01-21/3143958-12-change-profile-config-sync-9.1.x.patch"
}
},
"patches-ignore": {
"drupal/lightning_core": {
"drupal/core": {
"2869592 - Disabled update module shouldn't produce a status report warning": "https://www.drupal.org/files/issues/2869592-remove-update-warning-7.patch"
}
}
}
},
"autoload": {
"psr-4": {
"Acquia\\Lightning\\": "src"
},
"classmap": [
"src/Composer/ConfigureLegacyProject.php"
]
},
"repositories": {
"drupal": {
"type": "composer",
"url": "https://packages.drupal.org/8"
},
"assets": {
"type": "composer",
"url": "https://asset-packagist.org"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"post-install-cmd": [
"@putenv DIR=./docroot/profiles/lightning",
"mkdir -p $DIR",
"ln -s -f $PWD/config $DIR",
"ln -s -f $PWD/drush.services.yml $DIR",
"ln -s -f $PWD/favicon.ico $DIR",
"ln -s -f $PWD/help $DIR",
"ln -s -f $PWD/lightning-logo.png $DIR",
"ln -s -f $PWD/modules $DIR",
"ln -s -f $PWD/src $DIR",
"ln -s -f $PWD/tests $DIR",
"find $PWD -name 'lightning.*' -depth 1 -exec ln -s -f {} $DIR ';'",
"cp -f phpunit.xml ./docroot/core"
],
"configure-tarball": "Acquia\\Lightning\\Composer\\ConfigureLegacyProject::execute",
"enable-asset-packagist": "Acquia\\Lightning\\Composer\\AssetPackagist::execute",
"nuke": "rm -r -f docroot vendor",
"verify-patched-constraints": "Acquia\\Lightning\\Composer\\PatchedConstraint::execute"
}
}