-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
185 lines (185 loc) · 6.46 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
{
"name": "unocha/rwint9-site",
"description": "ReliefWeb - Drupal 9 version",
"type": "project",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "UNOCHA",
"role": ""
}
],
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
},
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"require": {
"php": "8.0.*",
"aws/aws-sdk-php": "^3.238",
"composer/installers": "^1.10",
"cweagans/composer-patches": "^1.7",
"drupal-composer/preserve-paths": "^0.1.6",
"drupal/admin_denied": "^1.1",
"drupal/allowed_formats": "^1.3",
"drupal/components": "^2.4",
"drupal/config_split": "^2.0.0-rc1",
"drupal/content_entity_clone": "^1.0.0",
"drupal/core-composer-scaffold": "^9.3",
"drupal/core-dev": "^9.3",
"drupal/core-recommended": "^9.3",
"drupal/geofield": "^1.39",
"drupal/google_tag": "^1.4",
"drupal/guidelines": "^1.0",
"drupal/imageapi_optimize_binaries": "^1.0-alpha2",
"drupal/imagemagick": "^3.3",
"drupal/inline_entity_form": "^1.0@RC",
"drupal/mailsystem": "^4.3",
"drupal/maintenance200": "^1.1",
"drupal/memcache": "^2.4",
"drupal/metatag": "^1.16",
"drupal/migrate_plus": "^5.3",
"drupal/migrate_tools": "^5.0",
"drupal/mimemail": "^1.0-alpha4",
"drupal/pathauto": "^1.10",
"drupal/redirect": "^1.7",
"drupal/social_auth_hid": "^3.0",
"drupal/svg_image": "^1.15",
"drupal/taxonomy_term_preview": "^1.0.0",
"drupal/taxonomy_term_revision": "^1.1",
"drupal/theme_switcher": "^1.2",
"drupal/token": "^1.10",
"drupal/user_display_name": "^1.0",
"drush/drush": "^11.0",
"google/analytics-data": "^0.8.4",
"google/auth": "^1.21",
"league/commonmark": "^2.2",
"league/html-to-markdown": "^5.0",
"lolli42/finediff": "^1.0",
"pelago/emogrifier": "^6.0",
"reliefweb/api-indexer": "^v2.5.0",
"reliefweb/simple-autocomplete": "^v1.3",
"reliefweb/simple-datepicker": "^v1.3",
"symfony/flex": "^2.0",
"symfony/uid": "^6.0",
"unocha/common_design": "^7.0.0",
"webflo/drupal-finder": "^1.2.2"
},
"require-dev": {
"drupal/coder": "^8.3",
"drupal/config_filter": "^2.2",
"drupal/dev_mode": "^2.3",
"drupal/devel": "^4.1",
"drupal/devel_php": "^1.3",
"drupal/stage_file_proxy": "^1.2",
"kint-php/kint": "^3.3",
"mikey179/vfsstream": "^1.6",
"phpcompatibility/php-compatibility": "^9.3",
"phpmd/phpmd": "^2.11",
"phpspec/prophecy-phpunit": "^2",
"phpunit/php-code-coverage": "^9.2",
"phpunit/phpunit": "^9.5",
"weitzman/drupal-test-traits": "^1.5"
},
"conflict": {
"drupal/drupal": "*",
"symfony/symfony": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"bin-dir": "vendor/bin/",
"sort-packages": true,
"allow-plugins": {
"composer/installers": true,
"cweagans/composer-patches": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"drupal-composer/preserve-paths": true,
"drupal/core-composer-scaffold": true,
"drupal/core-project-message": true,
"drupal/console-extend-plugin": true,
"oomphinc/composer-installers-extender": true,
"symfony/flex": true
}
},
"autoload": {
"classmap": [
"scripts/composer/ScriptHandler.php"
]
},
"scripts": {
"post-install-cmd": [
"DrupalProject\\composer\\ScriptHandler::createRequiredFiles",
"DrupalProject\\composer\\ScriptHandler::removeUnnecessaryFiles",
"@git-hooks"
],
"post-update-cmd": [
"DrupalProject\\composer\\ScriptHandler::createRequiredFiles",
"DrupalProject\\composer\\ScriptHandler::removeUnnecessaryFiles",
"@git-hooks"
],
"git-hooks": "test -d .git && git config core.hooksPath git-hooks || exit 0",
"sass-prepare": "cd html/themes/custom/common_design_subtheme && npm install",
"sass-build": "cd html/themes/custom/common_design_subtheme && ./node_modules/.bin/sass sass:build",
"sass-cleanup": "cd html/themes/custom/common_design_subtheme && rm -rf ./node_modules",
"sass": [
"@sass-prepare",
"@sass-build",
"@sass-cleanup"
]
},
"extra": {
"enable-patching": true,
"composer-exit-on-patch-failure": true,
"patches-file": "composer.patches.json",
"patchLevel": {
"drupal/core": "-p2"
},
"installer-paths": {
"html/core": ["type:drupal-core"],
"html/libraries/ckeditor/plugins/{$name}": ["vendor:ckeditor-plugin"],
"html/libraries/{$name}": ["type:drupal-library"],
"html/modules/contrib/{$name}": ["type:drupal-module"],
"html/profiles/contrib/{$name}": ["type:drupal-profile"],
"html/themes/contrib/{$name}": ["type:drupal-theme"],
"drush/Commands/{$name}": ["type:drupal-drush"]
},
"preserve-paths": [
"html/modules/custom",
"html/themes/custom"
],
"drupal-scaffold": {
"file-mapping": {
"[web-root]/sites/default/services.yml": {
"mode": "replace",
"path": "html/core/assets/scaffold/files/default.services.yml",
"overwrite": false
},
"[web-root]/sites/default/settings.php": {
"mode": "replace",
"path": "html/core/assets/scaffold/files/default.settings.php",
"overwrite": false
},
"[web-root]/robots.txt": {
"append": "assets/robots.txt.append"
}
},
"locations": {
"web-root": "html/"
}
},
"merge-plugin": {
"include": [
"html/core/composer.json"
],
"recurse": true,
"replace": false,
"merge-extra": false
}
}
}