-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathcomposer.json
63 lines (63 loc) · 1.88 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
{
"name": "acquia/blt-project",
"description": "Project template for Drupal 8 sites built with BLT.",
"type": "project",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"acquia/blt": "^8.9.12",
"acquia/lightning": "^3.0.0",
"acquia/headless_lightning": "^1.1.0-alpha2",
"geerlingguy/drupal-vm": "~4.3"
},
"require-dev": {},
"extra": {
"enable-patching": true,
"installer-types": [
"bower-asset",
"npm-asset"
],
"installer-paths": {
"docroot/core": [
"type:drupal-core"
],
"docroot/modules/contrib/{$name}": [
"type:drupal-module"
],
"docroot/modules/custom/{$name}": [
"type:drupal-custom-module"
],
"docroot/profiles/contrib/{$name}": [
"type:drupal-profile"
],
"docroot/profiles/custom/{$name}": [
"type:drupal-custom-profile"
],
"docroot/themes/contrib/{$name}": [
"type:drupal-theme"
],
"docroot/themes/custom/{$name}": [
"type:drupal-custom-theme"
],
"docroot/libraries/{$name}": [
"type:drupal-library",
"type:bower-asset",
"type:npm-asset"
],
"drush/contrib/{$name}": [
"type:drupal-drush"
]
},
"merge-plugin": {
"require": [
"vendor/acquia/blt/composer.required.json",
"vendor/acquia/blt/composer.suggested.json"
],
"merge-extra": true,
"merge-extra-deep": true,
"merge-scripts": true,
"replace": false,
"ignore-duplicates": true
}
}
}