forked from usdoj/foia-api
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
208 lines (208 loc) · 8.52 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": "usdoj/foia",
"description": "Drupal 8 FOIA site built with BLT.",
"type": "project",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=7.4",
"ext-dom": "*",
"acquia/blt": "^12",
"acquia/blt-simplesamlphp": "^1.0",
"acquia/drupal-spec-tool": "^4.1",
"acquia/memcache-settings": "*",
"composer/installers": "^1.7",
"cweagans/composer-patches": "^1.6.4",
"dompdf/dompdf": "^0.8.2",
"drupal/acquia_connector": "^3.0.4",
"drupal/acquia_purge": "^1.0-beta3",
"drupal/address": "~1.0",
"drupal/auto_entitylabel": "^3.0@beta",
"drupal/autologout": "^1.0",
"drupal/autosave_form": "^1.0",
"drupal/cog": "^1.8",
"drupal/config_split": "^1.0.0",
"drupal/core": "^9.3.2",
"drupal/core-composer-scaffold": "^9.0",
"drupal/core-recommended": "^9.0",
"drupal/entity_clone": "^1.0@beta",
"drupal/entity_embed": "^1.0",
"drupal/entity_reference_revisions": "^1.7",
"drupal/entity_reference_views_select": "^1.3",
"drupal/features": "^3.7.0",
"drupal/feeds": "^3.0@alpha",
"drupal/feeds_ex": "^1.0@alpha",
"drupal/field_group": "^3.2",
"drupal/field_permissions": "~1.0",
"drupal/file_entity": "^2.0@beta",
"drupal/form_mode_manager": "^2.0@RC",
"drupal/jquery_ui": "^1.4",
"drupal/jquery_ui_accordion": "^1.1",
"drupal/jsonapi_extras": "^3.0",
"drupal/libraries": "^3.0",
"drupal/lightning_api": "^4.1",
"drupal/lightning_core": "^5.2",
"drupal/lightning_layout": "^2.10",
"drupal/lightning_media": "^3.21 || ^4.6",
"drupal/lightning_workflow": "^3.6",
"drupal/maillog": "^1.0@beta",
"drupal/mailsystem": "^4.1",
"drupal/metatag": "^1.9",
"drupal/migrate_plus": "^5.1",
"drupal/migrate_tools": "^5.0",
"drupal/mysql56": "^1.2",
"drupal/node_edit_protection": "^1.0",
"drupal/node_revision_delete": "^1.0@beta",
"drupal/openapi": "^2.0",
"drupal/paragraphs": "^1.10",
"drupal/password_policy": "^3.0@alpha",
"drupal/precision_modifier": "^1.0@beta",
"drupal/profile_switcher": "^1.0-alpha5",
"drupal/qa_accounts": "^1.0.0-alpha1",
"drupal/queue_ui": "^2.0",
"drupal/restui": "^1.15",
"drupal/roleassign": "^1.0@alpha",
"drupal/rules": "3.x-dev@dev",
"drupal/seckit": "^2.0",
"drupal/shield": "^1.0.0",
"drupal/simplesamlphp_auth": "3.x-dev@dev",
"drupal/swiftmailer": "^2.0",
"drupal/time_field": "^2.0",
"drupal/upgrade_status": "^3.11",
"drupal/video_embed_field": "^2.0",
"drupal/view_unpublished": "^1.0@alpha",
"drupal/views_bulk_operations": "^3.6",
"drupal/views_data_export": "^1.0.0-beta1",
"drupal/views_infinite_scroll": "^1.6",
"drupal/webform": "^6.0.5",
"drush/drush": "~10.3.6",
"npm-asset/jquery-validation": "^1.19"
},
"require-dev": {
"acquia/blt-phpcs": "^1.0",
"geerlingguy/drupal-vm": "~5.0"
},
"extra": {
"drupal-scaffold": {
"locations": {
"web-root": "./docroot"
},
"file-mapping": {
"[web-root]/.htaccess": false,
"[web-root]/robots.txt": false,
"[web-root]/sites/development.services.yml": false,
"[project-root]/.editorconfig": false,
"[project-root]/.gitattributes": false
}
},
"enable-patching": true,
"installer-paths": {
"docroot/core": [
"type:drupal-core"
],
"docroot/modules/contrib/{$name}": [
"type:drupal-module"
],
"docroot/modules/custom/{$name}": [
"type:drupal-custom-module"
],
"docroot/profiles/contrib/{$name}": [
"type:drupal-profile"
],
"docroot/profiles/custom/{$name}": [
"type:drupal-custom-profile"
],
"docroot/themes/contrib/{$name}": [
"type:drupal-theme"
],
"docroot/themes/custom/{$name}": [
"type:drupal-custom-theme"
],
"docroot/libraries/{$name}": [
"type:drupal-library",
"type:bower-asset",
"type:npm-asset"
],
"drush/Commands/{$name}": [
"type:drupal-drush",
"type:drupal-drush"
]
},
"patches": {
"drupal/core": {
"Account for null triggering element when validating managed file elements": "https://www.drupal.org/files/issues/validating_managed-2910320-2.patch",
"FOIA-96: Style read-only inputs as disabled": "./patches/FOIA-96-readonly-inputs.patch",
"FOIA-32: Dynamically provide action plugins for every moderation state change": "https://www.drupal.org/files/issues/2019-11-20/2797583_provide_moderation_states_as_actions_128.patch",
"FOIA-32: Exclude Agency/Component from validation for bulk publishing": "./patches/FOIA-32-validator.patch",
"2869592 - Disabled update module shouldn't produce a status report warning": "https://www.drupal.org/files/issues/2020-02-07/2869592-remove-update-warning-34.patch",
"Simple decimals fail to pass validation" : "https://www.drupal.org/files/issues/2021-10-07/drupal-simple-decimal-validation-ver_9.2.7-2230909-234.patch"
},
"drupal/password_policy": {
"Config install issues": "https://www.drupal.org/files/issues/2021-07-05/password_policy_field_last_password_reset_unknown_error_2771129-130.patch"
},
"drupal/entity_clone": {
"Paragraph fix": "https://www.drupal.org/files/issues/2021-04-06/corrupted_data_paragraphs-3060223-46.patch"
},
"drupal/entity_reference_views_select": {
"Entity Reference Views Checkboxes throw error in EntityReference.php class https://www.drupal.org/project/entity_reference_views_select/issues/3179436": "https://www.drupal.org/files/issues/2021-11-17/entity_reference_views_select-set_default_option_for_checkboxes-3179436-4.patch"
},
"drupal/inline_entity_form": {
"Migrate fix": "https://www.drupal.org/files/issues/2021-06-28/3221074_3.patch"
},
"drupal/paragraphs": {
"Inline Paragraphs widget performance update": "./patches/paragraphs-improve-performance-2935134.patch"
}
},
"installer-types": [
"bower-asset",
"npm-asset"
],
"composer-exit-on-patch-failure": true,
"patchLevel": {
"drupal/core": "-p2"
},
"patches-ignore": {
"drupal/lightning_core": {
"drupal/core": {
"2869592 - Disabled update module shouldn't produce a status report warning": "https://www.drupal.org/files/issues/2869592-remove-update-warning-7.patch",
"[subprofile support] 1356276 - Allow profiles to define a base/parent profile and load them in the correct order": "https://www.drupal.org/files/issues/2019-11-05/1356276-531-8.8.x-4.patch",
"[subprofile support] 2914389 - Allow profiles to exclude dependencies of their parent": "https://www.drupal.org/files/issues/2018-07-09/2914389-8-do-not-test.patch"
}
}
}
},
"repositories": {
"drupal": {
"type": "composer",
"url": "https://packages.drupal.org/8"
},
"asset-packagist": {
"type": "composer",
"url": "https://asset-packagist.org"
}
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"Example\\": "blt/src/"
},
"classmap": []
},
"autoload-dev": {
"psr-4": {
"Drupal\\Tests\\PHPUnit\\": "tests/phpunit/src/"
}
},
"scripts": {
"post-create-project-cmd": [
"blt internal:create-project:init-repo"
],
"nuke": [
"rm -rf vendor composer.lock docroot/core docroot/modules/contrib docroot/profiles/contrib docroot/themes/contrib",
"@composer clearcache --ansi",
"@composer install --ansi"
]
}
}