-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
72 lines (72 loc) · 2.48 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
{
"name": "drupal/cms",
"description": "Drupal with a bunch of useful stuff.",
"type": "project",
"license": "GPL-2.0-or-later",
"homepage": "https://www.drupal.org/project/drupal",
"support": {
"docs": "https://drupal.org/docs/user_guide/en/index.html",
"chat": "https://drupal.org/node/314178"
},
"repositories": {
"drupal": {
"type": "composer",
"url": "https://packages.drupal.org/8"
}
},
"require": {
"composer/installers": "^2.3",
"drupal/core-composer-scaffold": "^11.1",
"drupal/core-recommended": "^11.1",
"drupal/drupal_cms_accessibility_tools": "*",
"drupal/drupal_cms_ai": "*",
"drupal/drupal_cms_analytics": "*",
"drupal/drupal_cms_blog": "*",
"drupal/drupal_cms_case_study": "*",
"drupal/drupal_cms_events": "*",
"drupal/drupal_cms_forms": "*",
"drupal/drupal_cms_news": "*",
"drupal/drupal_cms_person": "*",
"drupal/drupal_cms_project": "*",
"drupal/drupal_cms_seo_tools": "*",
"drupal/drupal_cms_starter": "*",
"drupal/feeds": "^3.0@RC",
"drupal/highlightjs_input_filter": "^1.1",
"drupal/tome": "^1.13",
"drupal/views_bulk_edit": "^3.0",
"drush/drush": "^13"
},
"conflict": {
"drupal/drupal": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"composer/installers": true,
"drupal/core-composer-scaffold": true,
"php-http/discovery": true
},
"sort-packages": true,
"optimize-autoloader": true
},
"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"],
"drush/Commands/contrib/{$name}": ["type:drupal-drush"],
"web/modules/custom/{$name}": ["type:drupal-custom-module"],
"web/profiles/custom/{$name}": ["type:drupal-custom-profile"],
"recipes/{$name}": ["type:drupal-recipe"],
"web/themes/custom/{$name}": ["type:drupal-custom-theme"]
}
}
}