forked from department-of-veterans-affairs/va.gov-cms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
191 lines (190 loc) · 8.41 KB
/
composer.json
File metadata and controls
191 lines (190 loc) · 8.41 KB
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
{
"name": "acquia/lightning-project",
"description": "Project template for Drupal 8 sites built with the Lightning distribution",
"type": "project",
"license": "GPL-2.0+",
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"drush/drush": "^9.0",
"drupal/media_entity_generic": "^1.0",
"acquia/lightning_dev": "dev-8.x-1.x",
"acquia/drupal-spec-tool": "^2.0"
},
"require": {
"drupal-composer/drupal-scaffold": "^2.0.0",
"cweagans/composer-patches": "^1.6.0",
"acquia/headless_lightning": "^1.4.0-beta2",
"drupal/components": "^1.0",
"drupal/uswds": "^1.0@beta",
"drupal/ui_patterns": "^1.0",
"behat/behat": "^3.4",
"drupal/drupal-extension": "^3.4",
"drush-ops/behat-drush-endpoint": "^0.0.4",
"guzzlehttp/guzzle": "^6.0@dev",
"drupal/migrate_plus": "^4.0",
"drupal/migrate_tools": "^4.0",
"drupal/migration_tools": "^2.0@alpha",
"querypath/querypath": "^3.0",
"webflo/drupal-finder": "^1.0.0",
"webmozart/path-util": "^2.3",
"drupal/workbench_access": "^1.0@beta",
"drupal/paragraphs": "^1.5",
"drupal/block_visibility_groups": "^1.3",
"drupal/admin_toolbar": "^1.24",
"drupal/xmlsitemap": "^1.0@alpha",
"drupal/menu_export": "^1.2",
"drupal/rest_menu_tree": "^1.1",
"drupal/restui": "^1.16",
"drupal/health_check": "^1.0",
"drupal/graphql": "^3.0@RC",
"drupal/address": "^1.4",
"drupal/node_title_help_text": "^1.0",
"drupal/field_group": "3.x-dev",
"drupal/social_media_links": "^2.6",
"weitzman/drupal-test-traits": "dev-master",
"phpunit/phpunit": "^6",
"drupal/redirect": "^1.3",
"michelf/php-markdown": "^1.8",
"drupal/cshs": "^1.0@beta",
"drupal/markup": "^1.0@beta",
"drupal/role_delegation": "^1.0@alpha",
"drupal/block_content_permissions": "^1.6",
"drupal/hide_revision_field": "^2.1",
"drupal/migrate_source_csv": "^2.2",
"drupal/auto_entitylabel": "^2.1@beta",
"zaporylie/composer-drupal-optimizations": "^1.0",
"drupal/redirect_options": "^1.2",
"drupal/path_redirect_import": "^1.0@beta",
"drupal/graphql_metatag": "1.x-dev",
"drupal/seckit": "^1.1",
"drupal/password_policy": "^3.0@alpha",
"drupal/environment_indicator": "^3.5",
"drupal/fast_404": "^1.0@alpha",
"drupal/config_split": "^1.4",
"twig/twig": "1.37.1",
"drupal/node_revisions_autoclean": "^1.0@beta",
"drupal/views_bulk_operations": "^2.5",
"drupal/health_check_url": "^2.1",
"drupal/pathologic": "^1.0@alpha",
"drupal/menu_breadcrumb": "^1.8",
"drupal/entity_reference_unpublished": "^1.1",
"drupal/cer": "^4.0@alpha",
"drupal/better_field_descriptions": "^1.4",
"drupal/markdown": "^1.2",
"drupal/paragraphs_browser": "^1.0@alpha",
"drupal/textfield_counter": "^1.6"
},
"autoload": {
"psr-4": {
"Traits\\": "tests/traits"
}
},
"repositories": {
"drupal": {
"type": "composer",
"url": "https://packages.drupal.org/8"
},
"assets": {
"type": "composer",
"url": "https://asset-packagist.org"
},
"dev": {
"type": "github",
"url": "https://github.com/acquia/lightning-dev",
"no-api": true
}
},
"config": {
"process-timeout": 0,
"vendor-dir": "docroot/vendor"
},
"scripts": {
"post-install-cmd": [
"DrupalComposer\\DrupalScaffold\\Plugin::scaffold",
"cp -r 'hooks/' '.git/hooks/'",
"php -r \"copy('hooks/pre-commit', '.git/hooks/pre-commit');\"",
"php -r \"copy('hooks/commit-msg', '.git/hooks/commit-msg');\"",
"php -r \"chmod('.git/hooks/pre-commit', 0777);\"",
"php -r \"chmod('.git/hooks/commit-msg', 0777);\""
],
"post-update-cmd": [
"DrupalComposer\\DrupalScaffold\\Plugin::scaffold",
"php -r \"copy('hooks/pre-commit', '.git/hooks/pre-commit');\"",
"php -r \"copy('hooks/commit-msg', '.git/hooks/commit-msg');\"",
"php -r \"chmod('.git/hooks/pre-commit', 0777);\"",
"php -r \"chmod('.git/hooks/commit-msg', 0777);\""
],
"nuke": "rm -r -f docroot/modules/contrib docroot/profiles/contrib/lightning vendor composer.lock",
"quick-start": [
"composer install",
"php docroot/core/scripts/drupal quick-start lightning --no-interaction"
]
},
"extra": {
"installer-types": [
"bower-asset",
"npm-asset"
],
"installer-paths": {
"docroot/core": [
"type:drupal-core"
],
"docroot/libraries/{$name}": [
"type:drupal-library",
"type:bower-asset",
"type:npm-asset"
],
"docroot/modules/contrib/{$name}": [
"type:drupal-module"
],
"docroot/profiles/contrib/{$name}": [
"type:drupal-profile"
],
"docroot/themes/contrib/{$name}": [
"type:drupal-theme"
],
"drush/contrib/{$name}": [
"type:drupal-drush"
]
},
"enable-patching": true,
"patches": {
"drupal/migration_tools": {
"Add changeHtmlContents DomModifier method": "https://www.drupal.org/files/issues/2018-11-26/change_html_contents-3015381-3.patch",
"Allow migration script to set curl options": "https://www.drupal.org/files/issues/2019-02-08/curl_options-3031705-2.patch",
"Eliminate 'Undefined index: arguments' notice during migration": "https://www.drupal.org/files/issues/2018-11-08/migration_tools-undef-arg-3012485-2.patch",
"Add obtainer for long, plain text": "https://www.drupal.org/files/issues/2019-04-04/long_plain_text_obtainer-3044998-5.patch",
"Add event dispatcher to messages": "https://www.drupal.org/files/issues/2019-04-15/message_event-3048397-2.patch"
},
"drupal/field_group": {
"Allow to position the group in the advanced (sidebar) column": "https://www.drupal.org/files/issues/2018-07-26/2652642-59.patch"
},
"drupal/path_redirect_import": {
"Add an option to import non-existent paths": "https://www.drupal.org/files/issues/2018-08-28/path_redirect_import-2995543-2.patch"
},
"acquia/headless_lightning": {
"Fix empty form id in redirect": "patches/nullFormIDFixInRedirect.patch"
},
"drupal/inline_entity_form": {
"Collapsed by default complex widget closes when trying to edit reference.": "https://www.drupal.org/files/issues/2018-11-08/2994001-open-on-action.patch"
},
"drupal/graphql": {
"Fix broken entity reference query filter.": "https://patch-diff.githubusercontent.com/raw/drupal-graphql/graphql/pull/693.patch",
"Fix null results from queryField": "https://patch-diff.githubusercontent.com/raw/drupal-graphql/graphql/pull/726.patch",
"Fix error from queryField results": "https://patch-diff.githubusercontent.com/raw/drupal-graphql/graphql/pull/743.patch"
},
"drupal/ics_field": {
"Include end date / time in ICS file.": "https://www.drupal.org/files/issues/2018-10-06/ics_field-2852239-11.patch"
},
"drupal/paragraphs": {
"Fix broken fieldset wrapping.": "https://www.drupal.org/files/issues/2907094_7_field_group_support.patch"
},
"drupal/password_policy": {
"Use core temp store.": "https://www.drupal.org/files/issues/2019-03-04/password_policy-use-core-temp-store-3032549-3.patch",
"Fix field field_last_password_reset is unknown.": "https://www.drupal.org/files/issues/2019-02-24/password_policy-config_import_field_error-2771129-73_alpha4_1.patch",
"Password expires does not work.": "https://www.drupal.org/files/issues/2019-03-11/2917622-password_policy-expiration-issue-for-8.x-3.0-alpha4.patch"
}
}
}
}