This repository has been archived by the owner on Nov 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
65 lines (65 loc) · 2.2 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": "govcms/govcms-project",
"description": "Project template for GovCMS Drupal Distribution",
"keywords": ["GovCMS"],
"type": "project",
"license": "GPL-2.0-or-later",
"homepage": "https://www.govcms.gov.au",
"support": {
"issues:": "https://github.com/GovCMS/GovCMS/issues",
"wik": "https://github.com/GovCMS/GovCMS/wiki",
"source": "https://github.com/GovCMS/GovCMS/releases"
},
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
}
],
"require": {
"govcms/govcms": "~3"
},
"extra": {
"drupal-scaffold": {
"locations": {
"web-root": "web/"
},
"initial": {
"sites/default/default.services.yml": "sites/default/services.yml",
"sites/default/default.settings.php": "sites/default/settings.php"
},
"excludes": [
"sites/development.services.yml"
]
},
"installer-types": [],
"installer-paths": {
"web/core": ["type:drupal-core"],
"web/libraries/{$name}": ["type:drupal-library"],
"web/modules/contrib/{$name}": ["type:drupal-module"],
"web/profiles/contrib/{$name}": ["type:drupal-profile"],
"web/themes/contrib/{$name}": ["type:drupal-theme"],
"drush/Commands/contrib/{$name}": ["type:drupal-drush"],
"web/modules/custom/{$name}": ["type:drupal-custom-module"],
"web/profiles/custom/{$name}": ["type:drupal-custom-profile"],
"web/themes/custom/{$name}": ["type:drupal-custom-theme"]
},
"enable-patching": true
},
"config": {
"allow-plugins": {
"composer/installers": true,
"cweagans/composer-patches": true,
"drupal/core-composer-scaffold": true,
"oomphinc/composer-installers-extender": true
},
"bin-dir": "bin/",
"sort-packages": true,
"optimize-autoloader": true
},
"scripts": {
"nuke": "rm -r -f bin vendor composer.lock web"
},
"minimum-stability": "dev",
"prefer-stable": true
}