-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
124 lines (124 loc) · 4.8 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "pantheon-upstreams/drupal-project",
"description": "Install Drupal 9 with Composer on Pantheon.",
"type": "project",
"license": "MIT",
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
},
{
"type": "path",
"url": "upstream-configuration"
}
],
"require": {
"composer/installers": "^1.9",
"cweagans/composer-patches": "^1.7",
"drupal/admin_toolbar": "^3.0",
"drupal/advagg": "^4.1",
"drupal/block_classes": "^1.0",
"drupal/block_field": "^1.0@RC",
"drupal/bootstrap_layouts": "^5.2",
"drupal/bootstrap_sass": "^5.0",
"drupal/coffee": "^1.2",
"drupal/commerce": "^2.28",
"drupal/config_ignore": "^2.3",
"drupal/config_readonly": "^1.0@beta",
"drupal/config_split": "^1.7",
"drupal/core-composer-scaffold": "^9.2",
"drupal/core-recommended": "^9.2",
"drupal/custom_body_class": "^1.3",
"drupal/devel": "^4.1",
"drupal/devel_kint_extras": "^1.0",
"drupal/ds": "^3.13",
"drupal/elasticsearch_connector": "^7.0@alpha",
"drupal/entity_browser": "^2.6",
"drupal/entity_usage": "^2.0@beta",
"drupal/field_group": "^3.2",
"drupal/google_analytics": "^4.0",
"drupal/graphql": "^4.2",
"drupal/htmlmail": "^3.0@alpha",
"drupal/linkit": "^6.0@beta",
"drupal/menus_attribute": "^1.2",
"drupal/migrate_source_csv": "^3.4",
"drupal/page_specific_class": "^2.0",
"drupal/paragraphs": "^1.12",
"drupal/pathauto": "^1.8",
"drupal/rabbit_hole": "^1.0@beta",
"drupal/redirect": "^1.6",
"drupal/search_api": "^1.21",
"drupal/search_api_page": "^1.0@beta",
"drupal/token": "^1.10",
"drupal/twig_tweak": "^3.1",
"drupal/typed_data": "^1.0@beta",
"drupal/viewfield": "^3.0@beta",
"drupal/views_bootstrap": "^4.3",
"drupal/webform": "^6.1",
"drush/drush": "^10",
"pantheon-systems/drupal-integrations": "^9",
"pantheon-upstreams/upstream-configuration": "self.version"
},
"require-dev": {
"drupal/core-dev": "^9.2"
},
"conflict": {
"drupal/drupal": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"drupal-scaffold": {
"locations": {
"web-root": "./web"
},
"allowed-packages": [
"pantheon-systems/drupal-integrations"
],
"file-mapping": {
"[project-root]/.editorconfig": false,
"[project-root]/pantheon.upstream.yml": false,
"[project-root]/.gitattributes": false
}
},
"patches": {
"drupal/elasticsearch_connector": {
"Cannot load the Elasticsearch cluster for your index": "https://www.drupal.org/files/issues/2021-12-01/cannot-load-cluster-exception-2850749-10.patch",
"Getting incorrect results for small keyword due to fuzziness": "https://www.drupal.org/files/issues/2021-09-13/incorrect-fuzziness-issue-3225054-3.patch"
},
"drupal/linkit": {
"Link shown after the autocomplete selection is the bare node/xxx link, not the alias": "https://www.drupal.org/files/issues/2021-11-05/2877535-34.patch"
},
"drupal/search_api_page": {
"Conjunction selection with Parse Mode 'Multiple Words (terms)' is not possible": "https://www.drupal.org/files/issues/2021-03-24/search_api_page-3108496-5.patch"
},
"drupal/devel_kint_extras": {
"No extras showing for me": "https://www.drupal.org/files/issues/2021-12-03/no-extras-showing-3193458-15.patch"
}
},
"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"],
"web/themes/custom/{$name}": ["type:drupal-custom-theme"],
"web/private/scripts/quicksilver/{$name}/": ["type:quicksilver-script"]
},
"composer-exit-on-patch-failure": true,
"patchLevel": {
"drupal/core": "-p2"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"platform": {
"php": "7.4"
}
}
}