This repository has been archived by the owner on Jun 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
98 lines (98 loc) · 3.24 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
{
"name": "18f/cf-ex-drupal8",
"description": "A sample Drupal 8 site readily deployable to cloud.gov",
"type": "project",
"license": "GPL-2.0+",
"authors": [
{
"name": "Fureigh",
"role": "Lead engineer"
}
],
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
}
],
"require": {
"php": "^7.1.0",
"composer/installers": "^1.9",
"cweagans/composer-patches": "^1.7",
"drupal/core-composer-scaffold": "~8.9.0",
"drupal/better_normalizers": "^1.0@beta",
"drupal/console": ">=1.0 <1.9.4",
"drupal/core": "8.9.20",
"drupal/ctools": "^3.0",
"drupal/default_content": "2.0.0-alpha1",
"drupal/default_content_deploy": "^1.0@beta",
"drupal/devel": "^1.2",
"drupal/diff": "^1.0@RC",
"drupal/embed": "^1.0",
"drupal/features": "^3.5",
"drupal/inline_entity_form": "^1.0@beta",
"drupal/paragraphs": "^1.5",
"drupal/pathauto": "^1.1",
"drupal/rules": "^3.0@alpha",
"drupal/s3fs": "^3.0@alpha",
"drupal/scheduler": "1.x-dev#ddb7630",
"drupal/time_formatter": "1.x-dev",
"drupal/tour_ui": "^1.0@alpha",
"drupal/uswds": "^1.0@beta",
"drupal/uswds_paragraphs": "1.x-dev#f7927a6e7bc5bf12a222e960e844af8b223e3fd7",
"drush/drush": "~8.0|^9.0.0-beta8",
"webflo/drupal-finder": "^1.0.0",
"webmozart/path-util": "^2.3"
},
"conflict": {
"drupal/drupal": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"allow-plugins": {
"cweagans/composer-patches": true,
"composer/installers": true,
"drupal/core-composer-scaffold": true,
"drupal/console-extend-plugin": true
}
},
"autoload": {
"classmap": [
"scripts/composer/ScriptHandler.php"
]
},
"scripts": {
"drupal-scaffold": "DrupalComposer\\DrupalScaffold\\Plugin::scaffold",
"pre-install-cmd": [
"DrupalProject\\composer\\ScriptHandler::checkComposerVersion"
],
"pre-update-cmd": [
"DrupalProject\\composer\\ScriptHandler::checkComposerVersion"
],
"post-install-cmd": [
"DrupalProject\\composer\\ScriptHandler::createRequiredFiles"
],
"post-update-cmd": [
"DrupalProject\\composer\\ScriptHandler::createRequiredFiles"
]
},
"extra": {
"drupal-scaffold": {
"locations": {
"web-root": "./web"
}
},
"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"],
"web/drush/contrib/{$name}": ["type:drupal-drush"],
"web/modules/custom/{$name}": ["type:drupal-custom-module"],
"web/themes/custom/{$name}": ["type:drupal-custom-theme"]
}
}
}