-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcomposer.json
207 lines (207 loc) · 7.87 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
{
"name": "drupal/recommended-project",
"description": "Project template for Drupal 9 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": {
"php": ">=8.3",
"composer/installers": "^2.3",
"cweagans/composer-patches": "^1.7",
"drupal/address": "^1.9",
"drupal/admin_toolbar": "^3.4",
"drupal/allowed_formats": "^3.0",
"drupal/autologout": "^2.0",
"drupal/ckeditor5_embedded_content": "^2.0",
"drupal/ckeditor_media_resize": "^1.0@beta",
"drupal/ckeditor_templates": "^1.3",
"drupal/ckeditor_templates_ui": "^1.5",
"drupal/composer_deploy": "^1.7",
"drupal/conditional_fields": "^4.0@alpha",
"drupal/content_lock": "^2.2",
"drupal/content_moderation_notifications": "^3.4",
"drupal/core-composer-scaffold": "^10",
"drupal/core-project-message": "^10",
"drupal/core-recommended": "^10",
"drupal/ctools": "^3.7",
"drupal/devel": "^5.1",
"drupal/diff": "^1.0",
"drupal/embedded_content": "^2.0",
"drupal/entity_embed": "^1.5",
"drupal/entity_reference_revisions": "^1.9",
"drupal/externalauth": "^2",
"drupal/faqfield": "^7.1",
"drupal/feeds": "^3.0@beta",
"drupal/field_defaults": "^2.0",
"drupal/field_group": "^3.6",
"drupal/field_permissions": "^1.1",
"drupal/hierarchy_manager": "^3.3",
"drupal/image_style_warmer": "^1.1",
"drupal/jquery_ui_accordion": "^2.0",
"drupal/language_switcher_extended": "^1.0",
"drupal/log_stdout": "^1.3",
"drupal/menu_block": "^1.7",
"drupal/menu_breadcrumb": "^2.0@alpha",
"drupal/menu_item_fields": "^1.10",
"drupal/new_relic_rpm": "^2.1",
"drupal/node_menus": "^3.0@alpha",
"drupal/paragraphs_entity_embed": "^3.0",
"drupal/pathauto": "^1.8",
"drupal/permission_spreadsheet": "^2.1",
"drupal/redirect": "^1.6",
"drupal/remove_http_headers": "^2.0",
"drupal/s3fs": "^3.3",
"drupal/samlauth": "^3.9",
"drupal/simple_sitemap": "^4.1",
"drupal/simplify_menu": "^3.1",
"drupal/sortableviews": "^1.3",
"drupal/tome": "^1.6",
"drupal/twig_tweak": "^3.1",
"drupal/uswds_base": "^2.4",
"drupal/uswds_ckeditor_integration": "^3.1",
"drupal/uswds_paragraph_components": "^3.0",
"drupal/views_data_export": "^1.4",
"drupal/views_menu_children_filter": "^3.0@RC",
"drupal/viewsreference": "^2.0@beta",
"drush/drush": "^12",
"masterminds/html5": "^2.0",
"mglaman/composer-drupal-lenient": "^1.0",
"nyholm/psr7": "^1.4",
"nyholm/psr7-server": "^1.0",
"onelogin/php-saml": "^4",
"wikimedia/composer-merge-plugin": "^2.0.0"
},
"conflict": {
"drupal/drupal": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"optimize-autoloader": true,
"process-timeout": 0,
"sort-packages": true,
"allow-plugins": {
"composer/installers": true,
"drupal/console-extend-plugin": true,
"drupal/core-composer-scaffold": true,
"drupal/core-project-message": true,
"wikimedia/composer-merge-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"cweagans/composer-patches": true,
"mglaman/composer-drupal-lenient": true
}
},
"extra": {
"drupal-scaffold": {
"locations": {
"web-root": "web/"
}
},
"installer-types": [
"drupal-module", "drupal-theme"
],
"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"
]
},
"patchLevel": {
"drupal/core": "-p2"
},
"patches": {
"drupal/tome": {
"Make tome work with js and css aggregation": "./patches/drupal/tomeAggregationFix.patch",
"De-duplicate invoke paths in StaticCommand's exportPaths": "./patches/drupal/deduplicateTomeInvokePaths.patch",
"Make tome work with drush 12": "https://www.drupal.org/files/issues/2023-08-02/tome_drush12-support.patch",
"Make tome work with path count > 1 without re-exporting pages multiple times" : "./patches/drupal/tomePathCountFixes.patch"
},
"drupal/core": {
"Enable MenuActiveTrail to find the original menu item created by node_menus": "./patches/drupal/correctActiveTrail_d10.patch",
"Show views theme suggestions in twig debug": "./patches/drupal/viewsSuggestions-10_3.patch"
},
"drupal/autologout": {
"Autologout can log out out from other tabs": "https://www.drupal.org/files/issues/2024-06-03/3395581-7.patch"
},
"drupal/views_menu_children_filter": {
"Use the technique from correctActiveTrail.patch to return the original menu item": "./patches/drupal/correctMenuChildren_d10.patch"
},
"drupal/menu_breadcrumb": {
"Add url.path to cache context for menu breadcrumb": "https://www.drupal.org/files/issues/2024-09-11/menu_breadcrumb-3230481-fix-cache-context-mr22.patch"
}
},
"drupal-lenient": {
"allowed-list": [
"drupal/ckeditor_templates"
]
}
},
"require-dev": {
"drupal/coder": "^8.3",
"mglaman/phpstan-drupal": "*",
"php-parallel-lint/php-parallel-lint": "^1.4",
"phpcompatibility/php-compatibility": "^9.3",
"phpstan/phpstan": "*",
"phpstan/phpstan-deprecation-rules": "*",
"rector/rector": "^2.0"
},
"scripts": {
"changed-files": [
"bin/changed-files"
],
"phpcs-errors": [
"vendor/bin/phpcs -n --standard=.phpcs.xml.dist"
],
"phpcs-strict": [
"vendor/bin/phpcs --standard=.phpcs.xml.dist"
],
"phpcs-changes": [
"vendor/bin/phpcs -n --standard=.phpcs.xml.dist `bin/changed-files`"
],
"phpcs-changes-strict": [
"vendor/bin/phpcs --standard=.phpcs.xml.dist `bin/changed-files`"
],
"php-lint": [
"vendor/bin/parallel-lint -e php,module,inc,install,test,profile,theme ./web/modules/custom ./web/themes/custom"
],
"phpstan": [
"vendor/bin/phpstan --memory-limit=1G"
],
"php-compatibility": [
"vendor/bin/phpcs -pn --runtime-set testVersion 8.3- web/modules/custom web/themes/custom -d memory_limit=2G --standard=.phpcs.xml.dist"
]
}
}