-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
65 lines (65 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
64
65
{
"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": "^9.0.3",
"drupal/pathauto": "^1.2",
"drupal/admin_toolbar": "^1.23",
"drupal/current_page_crumb": "^1.2"
},
"require-dev": {
"geerlingguy/drupal-vm": "^4.8"
},
"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": [
"blt/composer.required.json",
"blt/composer.suggested.json"
],
"merge-extra": true,
"merge-extra-deep": true,
"merge-scripts": true,
"replace": false,
"ignore-duplicates": true
}
}
}