-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
105 lines (105 loc) · 3.26 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
{
"name": "drupal/legacy-project",
"description": "Project template for Drupal 9 projects with composer following drupal/drupal layout",
"type": "project",
"license": "GPL-2.0-or-later",
"homepage": "https://www.drupal.org/project/drupal",
"support": {
"docs": "https://www.drupal.org/docs/user_guide/en/index.html",
"chat": "https://www.drupal.org/node/314178"
},
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
}
],
"require": {
"composer/installers": "^1.9",
"cweagans/composer-patches": "^1.7",
"drupal/admin_toolbar": "^3.4",
"drupal/adminimal_admin_toolbar": "1.x-dev@dev",
"drupal/adminimal_theme": "^1.6",
"drupal/advancedqueue": "^1.0@RC",
"drupal/better_passwords": "^2.0",
"drupal/captcha": "^1.2",
"drupal/core-composer-scaffold": "^10",
"drupal/core-recommended": "^10",
"drupal/core-vendor-hardening": "^9.2",
"drupal/countdown": "^1.10",
"drupal/danse": "^2.2",
"drupal/flag": "^4.0@beta",
"drupal/fullcalendar_view": "^5.1",
"drupal/geolocation": "^3.2",
"drupal/highlight_php": "^1.0",
"drupal/message_subscribe": "^1.1",
"drupal/pf_email": "^2.1",
"drupal/push_framework": "^2.1",
"drupal/quick_node_clone": "^1.18",
"drupal/token": "^1.9",
"drupal/views_bulk_operations": "^4.0",
"drupal/webform": "^6.1",
"drush/drush": "^12"
},
"conflict": {
"drupal/drupal": "*"
},
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/installers": true,
"cweagans/composer-patches": true,
"drupal/core-composer-scaffold": true,
"drupal/core-vendor-hardening": true
}
},
"extra": {
"patchLevel": {
"drupal/core": "-p2"
},
"patches": {
"drupal/core": {
"Add our customizations to .htaccess (otherwise gets overwritten by scaffolding": "patches/htaccess.patch"
}
},
"drupal-scaffold": {
"locations": {
"web-root": "./"
},
"file-mapping": {
"[web-root]/README.md": false
}
},
"installer-paths": {
"core": [
"type:drupal-core"
],
"libraries/{$name}": [
"type:drupal-library"
],
"modules/contrib/{$name}": [
"type:drupal-module"
],
"profiles/contrib/{$name}": [
"type:drupal-profile"
],
"themes/contrib/{$name}": [
"type:drupal-theme"
],
"drush/Commands/contrib/{$name}": [
"type:drupal-drush"
],
"modules/custom/{$name}": [
"type:drupal-custom-module"
],
"profiles/custom/{$name}": [
"type:drupal-custom-profile"
],
"themes/custom/{$name}": [
"type:drupal-custom-theme"
]
}
}
}