-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
95 lines (95 loc) · 2.8 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
{
"name": "drupal-cod/cod_kickstart",
"description": "A reference architecture for conference sites built with COD.",
"type": "project",
"license": "gpl",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"acquia/blt": "^9.2",
"drupal/config_ignore": "2.x-dev#5fcb8501ca8eb0f4ef7253282650607c343e86f5",
"drupal/acquia_connector": "^1.5.0",
"drupal/cog": "^1.0.0",
"drupal/seckit": "^1.0.0-alpha2",
"drupal/security_review": "*",
"drupal/shield": "^1.0.0",
"doctrine/collections": "1.3.0",
"drupal/environment_indicator": "^3.0",
"drupal/admin_toolbar": "^1.19",
"drupal/adminimal_admin_toolbar": "^1.5",
"drupal/program": "1.x-dev",
"drupal/sponsor": "1.x-dev",
"drupal/event": "1.x-dev",
"drupal/ticket": "1.x-dev"
},
"require-dev": {
"drupal/console": "^1.0.0-rc13"
},
"repositories": {
"drupal": {
"type": "composer",
"url": "https://packages.drupal.org/8"
},
"asset-packagist": {
"type": "composer",
"url": "https://asset-packagist.org"
}
},
"extra": {
"blt": {
"update": true
},
"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/Commands/{$name}": [
"type:drupal-drush",
"type:drupal-drush"
]
},
"patches": [],
"enable-patching": true,
"merge-plugin": {
"merge-extra": true,
"merge-extra-deep": true,
"merge-scripts": true,
"replace": false,
"ignore-duplicates": true,
"require": [
"blt/composer.required.json",
"blt/composer.suggested.json"
]
},
"installer-types": [
"bower-asset",
"npm-asset"
]
},
"config": {
"sort-packages": true
}
}