Skip to content

Commit dd995d8

Browse files
authored
Merge pull request #561 from UN-OCHA/develop
[IASC-675][IASC-724][IASC-725][OPS-7997][OPS-7998] So many tikkerts
2 parents 9b44827 + 6b6c2d2 commit dd995d8

18 files changed

+2545
-825
lines changed

composer.json

+39-12
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@
1717
{
1818
"type": "composer",
1919
"url": "https://asset-packagist.org"
20+
},
21+
{
22+
"type": "vcs",
23+
"url": "https://github.com/UN-OCHA/file_checker"
2024
}
2125
],
2226
"require": {
@@ -30,18 +34,18 @@
3034
"drupal/components": "^2.4",
3135
"drupal/conditional_fields": "^4.0@alpha",
3236
"drupal/config_split": "^2.0.0-beta4",
33-
"drupal/core-composer-scaffold": "^9.2.6",
34-
"drupal/core-project-message": "^9.2.6",
35-
"drupal/core-recommended": "^9.2.6",
37+
"drupal/core-composer-scaffold": "^9.3.3",
38+
"drupal/core-project-message": "^9.3.3",
39+
"drupal/core-recommended": "^9.3.3",
3640
"drupal/ctools": "^3.7",
3741
"drupal/date_recur": "^3.0",
3842
"drupal/date_recur_modular": "^3.0",
3943
"drupal/diff": "^1.0@RC",
4044
"drupal/dream_block_manager": "^1.0",
4145
"drupal/dynamic_entity_reference": "^1.7",
4246
"drupal/entityqueue": "^1.0",
43-
"drupal/facets": "^1.8",
44-
"drupal/facets_pretty_paths": "^1.0@beta",
47+
"drupal/facets": "^2.0",
48+
"drupal/facets_pretty_paths": "^1.2",
4549
"drupal/field_group": "^3.0",
4650
"drupal/field_permissions": "^1.0@RC",
4751
"drupal/file_entity": "^2.0@beta",
@@ -52,6 +56,7 @@
5256
"drupal/geophp": "^1.0@beta",
5357
"drupal/google_tag": "^1.2",
5458
"drupal/group": "^1.0.0",
59+
"drupal/honeypot": "^2.0",
5560
"drupal/linkit": "^6.0@beta",
5661
"drupal/maintenance200": "^1.0",
5762
"drupal/media_entity_file_replace": "^1.0",
@@ -62,16 +67,17 @@
6267
"drupal/paragraphs_viewmode": "^1.0@alpha",
6368
"drupal/pathauto": "^1.4",
6469
"drupal/realname": "^2.0@beta",
65-
"drupal/redirect": "^1.4",
70+
"drupal/redirect": "^1.7",
6671
"drupal/redis": "^1.4",
6772
"drupal/search_api": "^1.14",
6873
"drupal/search_api_attachments": "^1.0@beta",
69-
"drupal/search_api_solr": "^4.1",
74+
"drupal/search_api_solr": "^4.2.3",
7075
"drupal/seckit": "^2.0",
7176
"drupal/select2": "^1.6",
7277
"drupal/select_or_other": "^4.0",
73-
"drupal/social_auth_hid": "^2.2",
78+
"drupal/social_auth_hid": "^3.0",
7479
"drupal/spamspan": "^1.2",
80+
"drupal/stage_file_proxy": "^1.1",
7581
"drupal/tablefield": "^2.1",
7682
"drupal/token": "^1.5",
7783
"drupal/token_filter": "^1.2",
@@ -85,22 +91,24 @@
8591
"phpoffice/phpspreadsheet": "^1.16",
8692
"symfony/flex": "^1.17",
8793
"unocha/common_design": "^5.0.0",
94+
"unocha/file_checker": "dev-8.x-1.x",
8895
"unocha/ocha_integrations": "^1.0",
8996
"unocha/un_date": "^1.0.1",
9097
"vlucas/phpdotenv": "^2.4",
9198
"webflo/drupal-finder": "^1.0.0",
92-
"webmozart/path-util": "^2.3"
99+
"webmozart/path-util": "^2.3",
100+
"wikimedia/composer-merge-plugin": "^2.0.1"
93101
},
94102
"require-dev": {
95103
"drupal/coder": "^8.3",
96104
"drupal/config_filter": "^2.2",
97-
"drupal/core-dev": "^9.2.6",
105+
"drupal/core-dev": "^9.3.3",
98106
"drupal/devel": "^4.1",
99-
"drupal/stage_file_proxy": "^1.1",
100107
"drupal/upgrade_rector": "1.x-dev@dev",
101108
"drupal/upgrade_status": "^3.8",
102109
"kint-php/kint": "^3.3",
103110
"phpmd/phpmd": "^2.6",
111+
"phpspec/prophecy-phpunit": "^2",
104112
"weitzman/drupal-test-traits": "^1.5",
105113
"weitzman/logintrait": "^1.1"
106114
},
@@ -111,7 +119,18 @@
111119
"prefer-stable": true,
112120
"config": {
113121
"bin-dir": "vendor/bin/",
114-
"sort-packages": true
122+
"sort-packages": true,
123+
"allow-plugins": {
124+
"composer/installers": true,
125+
"cweagans/composer-patches": true,
126+
"drupal-composer/preserve-paths": true,
127+
"drupal/core-composer-scaffold": true,
128+
"drupal/core-project-message": true,
129+
"drupal/console-extend-plugin": true,
130+
"oomphinc/composer-installers-extender": true,
131+
"symfony/flex": true,
132+
"wikimedia/composer-merge-plugin": true
133+
}
115134
},
116135
"scripts": {
117136
"sass-prepare": "cd html/themes/custom/iasc_common_design && npm install",
@@ -144,6 +163,14 @@
144163
"html/themes/contrib/{$name}": ["type:drupal-theme"],
145164
"drush/Commands/{$name}": ["type:drupal-drush"]
146165
},
166+
"merge-plugin": {
167+
"include": [
168+
"html/modules/contrib/webform/composer.libraries.json"
169+
],
170+
"merge-extra": true,
171+
"merge-extra-deep": true,
172+
"merge-scripts": true
173+
},
147174
"preserve-paths": [
148175
"html/modules/custom",
149176
"html/themes/custom"

0 commit comments

Comments
 (0)