-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
109 lines (109 loc) · 3.45 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
99
100
101
102
103
104
105
106
107
108
109
{
"name": "teamdeeson/d9-quickstart",
"description": "Quick start template for Drupal 9 projects.",
"type": "project",
"license": "GPL-2.0-or-later",
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
}
],
"require": {
"composer/installers": "~1.9.0",
"cweagans/composer-patches": "^1.6.5",
"drupal/coffee": "^1.0",
"drupal/config_ignore": "2.x-dev",
"drupal/core-composer-scaffold": "*",
"drupal/components": "^2.0@beta",
"drupal/config_filter": "^2.0@rc",
"drupal/config_split": "^1.5@rc",
"drupal/core": "^9.0.0",
"drupal/entity": "^1.0",
"drupal/field_group": "3.x-dev",
"drupal/focal_point": "^1.4",
"drupal/masquerade": "^2.0@beta",
"drupal/media_entity_download": "^2.0",
"drupal/metatag": "^1.13",
"drupal/paragraphs": "^1.12",
"drupal/pathauto": "^1.18",
"drupal/redirect": "^1.16",
"drupal/redis": "^1.4",
"drupal/reroute_email": "2.x-dev",
"drupal/save_edit": "^1.3",
"drupal/scheduler": "^1.3",
"drush/drush": "^10.3.1",
"drupal/warden": "^3.0"
},
"require-dev": {
"drupal/core-dev": "^9",
"drupal/stage_file_proxy": "^1.0"
},
"conflict": {
"drupal/drupal": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"post-install-cmd": [
"make composer--post-install-cmd"
],
"post-update-cmd": [
"make composer--post-update-cmd"
]
},
"extra": {
"installer-paths": {
"docroot/core": ["type:drupal-core"],
"docroot/libraries/{$name}": ["type:drupal-library"],
"docroot/modules/contrib/{$name}": ["type:drupal-module"],
"docroot/profiles/contrib/{$name}": ["type:drupal-profile"],
"docroot/themes/contrib/{$name}": ["type:drupal-theme"],
"drush/contrib/{$name}": ["type:drupal-drush"]
},
"drupal-scaffold": {
"allowed-packages": [
"drupal/core"
],
"locations": {
"web-root": "./docroot"
},
"symlink": true,
"overwrite": true,
"file-mapping": {
"[web-root]/.csslintrc": false,
"[web-root]/.editorconfig": false,
"[web-root]/.eslintignore": false,
"[web-root]/.eslintrc.json": false,
"[web-root]/.gitattributes": false,
"[web-root]/.ht.router.php": false,
"[web-root]/INSTALL.txt": false,
"[web-root]/README.txt": false,
"[web-root]/example.gitignore": false,
"[web-root]/update.php": false,
"[web-root]/web.config": false,
"[project-root]/.gitignore": false,
"[project-root]/.gitattributes": false,
"[project-root]/.editorconfig": false,
"[web-root]/sites/default/settings.php": "src/settings/settings.php",
"[web-root]/sites/default/services.yml": "src/settings/services.yml",
"[web-root]/sites/development.services.yml": "src/settings/development.services.yml",
"[web-root]/.htaccess": "src/settings/htaccess",
"[web-root]/robots.txt": "src/settings/robots.txt"
}
},
"enable-patching": true,
"patches": {
"drupal/config_ignore": {
"https://www.drupal.org/project/config_ignore/issues/3150462": "https://www.drupal.org/files/issues/2020-06-10/3150462-2.patch"
},
"drupal/core": {
"Allow entity classes per bundle": "https://www.drupal.org/files/issues/2020-06-16/2570593-105.patch"
}
}
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
}
}