-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
208 lines (208 loc) · 9.55 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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
{
"name": "drupal-composer/drupal-project",
"description": "Project template for Drupal 8 projects with composer",
"type": "project",
"license": "GPL-2.0+",
"authors": [
{
"name": "",
"role": ""
}
],
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
},
{
"type": "package",
"package": {
"name": "ckeditor-plugin/uploadimage",
"version": "4.8.0",
"type": "drupal-library",
"extra": {
"installer-name": "uploadimage"
},
"dist": {
"url": "https://download.ckeditor.com/uploadimage/releases/uploadimage_4.8.0.zip",
"type": "zip"
}
}
},
{
"type": "package",
"package": {
"name": "ckeditor-plugin/uploadwidget",
"version": "4.8.0",
"type": "drupal-library",
"extra": {
"installer-name": "uploadwidget"
},
"dist": {
"url": "https://download.ckeditor.com/uploadwidget/releases/uploadwidget_4.8.0.zip",
"type": "zip"
}
}
},
{
"type": "package",
"package": {
"name": "ckeditor-plugin/filetools",
"version": "4.8.0",
"type": "drupal-library",
"extra": {
"installer-name": "filetools"
},
"dist": {
"url": "https://download.ckeditor.com/filetools/releases/filetools_4.8.0.zip",
"type": "zip"
}
}
},
{
"type": "package",
"package": {
"name": "ckeditor-plugin/notification",
"version": "4.8.0",
"type": "drupal-library",
"extra": {
"installer-name": "notification"
},
"dist": {
"url": "https://download.ckeditor.com/notification/releases/notification_4.8.0.zip",
"type": "zip"
}
}
},
{
"type": "package",
"package": {
"name": "ckeditor-plugin/notificationaggregator",
"version": "4.8.0",
"type": "drupal-library",
"extra": {
"installer-name": "notificationaggregator"
},
"dist": {
"url": "https://download.ckeditor.com/notificationaggregator/releases/notificationaggregator_4.8.0.zip",
"type": "zip"
}
}
}
],
"require": {
"composer/installers": "^1.2",
"drupal-composer/drupal-scaffold": "^2.4",
"cweagans/composer-patches": "^1.6",
"drupal/core": "8.7.1",
"drush/drush": "^9.0",
"drupal/console": "~1.0",
"drupal/admin_toolbar": "^1.0",
"drupal/group": "1.x-dev",
"drupal/pathauto": "^1.3",
"drupal/paragraphs": "1.x-dev",
"drupal/menu_link": "1.x-dev",
"drupal/field_group": "3.0-beta1",
"drupal/groupmenu": "1.x-dev",
"drupal/allowed_formats": "^1.1",
"drupal/inline_entity_form": "^1.0@RC",
"drupal/rules": "^3.0@alpha",
"drupal/twig_tweak": "^2.1",
"drupal/xy_grid_layouts": "1.x-dev",
"drupal/entity_browser": "^2.0",
"drupal/address": "~1.0",
"drupal/devel": "^2.0",
"drupal/field_permissions": "^1.0@RC",
"drupal/entity": "1.x",
"drupal/maxlength": "^1.0@beta",
"drupal/module_filter": "^3.1",
"drupal/ckeditorheight": "^1.3",
"drupal/header_formatter": "^1.0",
"drupal/color_field": "^2.0",
"drupal/paragraphs_frontend_ui": "^1.0@alpha"
},
"require-dev": {
"drupal/coder": "^8.2",
"webflo/drupal-core-require-dev": "8.7.1",
"jakub-onderka/php-parallel-lint": "^0.9.2",
"jakub-onderka/php-console-highlighter": "^0.3.2"
},
"conflict": {
"drupal/drupal": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"classmap": [
"scripts/composer/ScriptHandler.php"
]
},
"scripts": {
"drupal-scaffold": "DrupalComposer\\DrupalScaffold\\Plugin::scaffold",
"pre-install-cmd": [
"DrupalProject\\composer\\ScriptHandler::checkComposerVersion"
],
"pre-update-cmd": [
"DrupalProject\\composer\\ScriptHandler::checkComposerVersion"
],
"post-install-cmd": [
"DrupalProject\\composer\\ScriptHandler::createRequiredFiles"
],
"post-update-cmd": [
"DrupalProject\\composer\\ScriptHandler::createRequiredFiles"
]
},
"extra": {
"installer-paths": {
"webroot/core": ["type:drupal-core"],
"webroot/libraries/ckeditor/plugins/{$name}": ["vendor:ckeditor-plugin"],
"webroot/libraries/{$name}": ["type:drupal-library"],
"webroot/modules/contrib/{$name}": ["type:drupal-module"],
"webroot/profiles/contrib/{$name}": ["type:drupal-profile"],
"webroot/themes/contrib/{$name}": ["type:drupal-theme"],
"webroot/sites/all/drush/contrib/{$name}": ["type:drupal-drush"]
},
"patches": {
"drupal/core": {
"LanguageNegotiator::updateConfiguration() is passed a NULL": "https://www.drupal.org/files/issues/language-2718657-3.patch",
"EntityViewBuilder::viewField() does not respect entity current language when used with an entity reference field": "https://www.drupal.org/files/issues/2019-02-21/entity-view-builder-entity-reference-language-2955392-34.patch",
"Site install from config throws Call to a member function set Weight() on null": "https://www.drupal.org/files/issues/2019-03-06/core-language-set-weight-3038085-2.patch",
"Views executeDIsplay() returns NULL and no validation occurs https://www.drupal.org/project/drupal/issues/2909132 - Views EntityReference display": "https://www.drupal.org/files/issues/2909132-2.patch",
"Media library widget + Paragraphs broken: validation error on required field in paragraphs subform" : "https://www.drupal.org/files/issues/2018-12-05/drupal-media-library-paragraphs-3003150-19-8.x.patch",
"Allow users to translate content they can edit": "https://www.drupal.org/files/issues/2018-10-16/allow-users-to-translate-editable-content-2972308-17.patch",
"Add a View link into the Node revisions table operations dropdown": "https://www.drupal.org/files/issues/2019-05-23/core-node_revisions_view_op_link-3055600-5.patch",
"Users could not find the Change password fields": "patches/drupal-improve_user_password_edit.patch",
"Content Translation Delete Access check invalid argument error - 2958180": "https://www.drupal.org/files/issues/2018-04-03/fix-content-translation-delete-access-check-invalid-argument-2958180_0.patch",
"Alter local task before access check": "https://www.drupal.org/files/issues/2019-07-12/drupal-hook-build-tasks-3067638-5.patch",
"Notice: Undefined index: #type in drupal_process_states()": "https://www.drupal.org/files/issues/2019-05-08/2700667-74.patch"
},
"drupal/group": {
"Combined support config entities and revisions": "https://www.drupal.org/files/issues/2019-07-31/group-combined-2797793-and-2829966-3030127-9.patch",
"Group and Node tokens from group content": "https://www.drupal.org/files/issues/group-content-entity-tokens-2916907-7.patch",
"Add a field to view and edit content's groups": "https://www.drupal.org/files/issues/2019-05-29/group-field_to_view_and_edit_content_groups-2813405-142.patch",
"Allow group admins to create users": "https://www.drupal.org/files/issues/2018-12-19/group-manage-users-2949408-15.patch",
"Permissions to choose which roles a member can assign": "https://www.drupal.org/files/issues/2019-04-10/group-user-manage-by-role-permissions-3027685-8.patch",
"Views argument referencing current user groups": "https://www.drupal.org/files/issues/2018-09-14/group_ids_from_current_user-views-argument.patch",
"Media enabler": "https://www.drupal.org/files/issues/2019-01-04/media-enabler-2984315-18.patch"
},
"drupal/groupmenu": {
"Use new entity_id_str field": "https://www.drupal.org/files/issues/2019-04-04/groupmenu-change_references_to_entity_id-3010909-9.patch"
},
"drupal/paragraphs": {
"#2901390 Langcode error": "https://www.drupal.org/files/issues/paragraphs-missing-langcode-2901390-9.patch",
"TypeError: Argument 2 passed": "https://www.drupal.org/files/issues/2018-11-01/paragraphs-remove_update_hook-3007596-8.patch",
"LogicException Form errors cannot be set after form validation has finished": "https://www.drupal.org/files/issues/2019-05-03/3013171-13.patch"
},
"drupal/menu_link": {
"Respect Group Permissions": "https://www.drupal.org/files/issues/2018-12-10/menu_link-respect_group_permissions-3019500-2.patch",
"Menu item without attributes causes a notice": "https://www.drupal.org/files/issues/2018-12-10/menu_link-attributes-error-3019509-3.patch"
}
}
},
"config": {
"platform": {
"php": "7.2",
"ext-gd": "1"
}
}
}