-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
93 lines (93 loc) · 2.79 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
{
"name": "drupal/recommended-project",
"description": "Project template for Drupal projects with a relocated document root",
"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": "^2.0",
"cweagans/composer-patches": "^1.0",
"drupal/admin_toolbar": "^3.4",
"drupal/better_exposed_filters": "^6.0",
"drupal/bootstrap": "^3.20",
"drupal/condition_query": "^1.3",
"drupal/config_split": "^1.2",
"drupal/core-composer-scaffold": "^10.0",
"drupal/core-project-message": "^10.0",
"drupal/core-recommended": "^10.0",
"drupal/csv_serialization": "^4.0",
"drupal/ctools": "^3.14",
"drupal/fontawesome": "^2.26",
"drupal/gin": "^3.0@RC",
"drupal/gin_toolbar": "^1.0@RC",
"drupal/key": "^1.15",
"drupal/pathauto": "^1.6",
"drupal/pco": "^2.0",
"drupal/queue_ui": "^3.1",
"drupal/r4032login": "^2.1",
"drupal/sendgrid_integration": "^2.2",
"drupal/token": "^1.12",
"drupal/views_block_filter_block": "^2.0",
"drupal/views_field_view": "^1.0@beta",
"drush/drush": "^12",
"league/csv": "^9.7"
},
"conflict": {
"drupal/drupal": "*"
},
"minimum-stability": "dev",
"config": {
"preferred-install": {
"drupal/condition_query": "source",
"*": "auto"
},
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"composer/installers": true,
"cweagans/composer-patches": true,
"drupal/core-composer-scaffold": true,
"drupal/core-project-message": true,
"rvtraveller/qs-composer-installer": true
}
},
"prefer-stable": true,
"extra": {
"installer-paths": {
"web/core": ["type:drupal-core"],
"web/modules/contrib/{$name}": ["type:drupal-module"],
"web/profiles/contrib/{$name}": ["type:drupal-profile"],
"web/themes/contrib/{$name}": ["type:drupal-theme"]
},
"drupal-scaffold": {
"locations": {
"web-root": "web/"
},
"allowed-packages": [
"drupal/core"
],
"file-mapping": {
"[web-root]/.htaccess": {
"mode": "replace",
"path": "web/core/assets/scaffold/files/htaccess",
"overwrite": false
}
}
},
"patches": {
"drupal/condition_query": {
"Add support for a wildcard parameter and a case sensitive option": "https://www.drupal.org/files/issues/2023-11-20/condition_query-support_wildcard_and_case_sensitivity-2986466-38.patch"
}
}
}
}