-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
182 lines (182 loc) · 6.19 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
{
"name": "drupal-composer/drupal-project",
"description": "Coding da Vinci website",
"type": "project",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Michael Büchner",
"role": "Administration"
}
],
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
},
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"require": {
"ext-gd": "*",
"bower-asset/fontawesome": "^5.15",
"composer/installers": "^2",
"drupal/admin_toolbar": "^3.0",
"drupal/ape": "^1.5",
"drupal/bartik": "^1.0",
"drupal/better_exposed_filters": "^7.0",
"drupal/block_exclude_pages": "^2.1@beta",
"drupal/blockgroup": "^2.0",
"drupal/classy": "^1.0",
"drupal/color": "^1.0",
"drupal/color-color": "^1.0",
"drupal/core": "^10",
"drupal/core-composer-scaffold": "^10",
"drupal/core-project-message": "^10",
"drupal/core-recommended": "^10",
"drupal/csv_serialization": "^4.0",
"drupal/eu_cookie_compliance": "^1.14",
"drupal/field_group": "^3.1",
"drupal/health_check": "^3.0",
"drupal/honeypot": "^2.2",
"drupal/image_widget_crop": "^2.3",
"drupal/insert": "^3.0",
"drupal/jquery_ui_accordion": "^2.0",
"drupal/jquery_ui_datepicker": "^2.1",
"drupal/jquery_ui_slider": "^2.1",
"drupal/jquery_ui_touch_punch": "^1.1",
"drupal/mailsystem": "^4.3",
"drupal/matomo": "^1.11",
"drupal/maxlength": "^3.1",
"drupal/metatag": "^2.0",
"drupal/mimemail": "^1.0@alpha",
"drupal/paragraphs": "^1.12",
"drupal/pathauto": "^1.8",
"drupal/phpmailer_smtp": "^2.0",
"drupal/purge_users": "^4.0@beta",
"drupal/quickedit": "^1.0",
"drupal/redis": "^1.5",
"drupal/schema_metatag": "^3.0",
"drupal/select2": "^1.13",
"drupal/seven": "^1.0@alpha",
"drupal/simple_sitemap": "^4.0",
"drupal/spamspan": "^3.0@beta",
"drupal/taxonomy_menu": "^3.4",
"drupal/token_or": "^2.3",
"drupal/tour": "^2.0",
"drupal/twig_tweak": "^3.1",
"drupal/ultimate_cron": "^2.0@alpha",
"drupal/upgrade_status": "^4.0",
"drupal/video_embed_field": "^2.4",
"drupal/views_data_export": "^1.0",
"drupal/views_random_seed": "^1.2",
"drupal/webform": "^6.1",
"drupal/x_frame_options_configuration": "^1.2",
"drush/drush": "^13",
"easyrdf/easyrdf": "^0.9",
"npm-asset/bootstrap": "^4.6",
"npm-asset/hammerjs": "^2.0",
"npm-asset/jquery-color": "^3.0",
"npm-asset/jquery-countup": "^1.0",
"npm-asset/jquery.easing": "^1.4",
"npm-asset/popper.js": "^1.16",
"npm-asset/select2": "^4.0",
"npm-asset/typeface-barlow": "*",
"npm-asset/waypoints": "^4.0",
"oomphinc/composer-installers-extender": "^2",
"vlucas/phpdotenv": "^5",
"webflo/drupal-finder": "^1.2",
"wikimedia/composer-merge-plugin": "^2.1"
},
"conflict": {
"drupal/drupal": "*"
},
"minimum-stability": "alpha",
"prefer-stable": true,
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/installers": true,
"drupal/core-composer-scaffold": true,
"drupal/core-project-message": true,
"cweagans/composer-patches": true,
"wikimedia/composer-merge-plugin": true,
"oomphinc/composer-installers-extender": true
},
"platform": {
"php": "8.3",
"ext-gd": "1"
}
},
"autoload": {
"classmap": [
"scripts/composer/ScriptHandler.php"
],
"files": ["load.environment.php"]
},
"scripts": {
"pre-install-cmd": [
"DrupalProject\\composer\\ScriptHandler::checkComposerVersion"
],
"pre-update-cmd": [
"DrupalProject\\composer\\ScriptHandler::checkComposerVersion"
],
"post-install-cmd": [
"DrupalProject\\composer\\ScriptHandler::createRequiredFiles"
],
"post-update-cmd": [
"DrupalProject\\composer\\ScriptHandler::createRequiredFiles"
]
},
"extra": {
"patchLevel": {
"drupal/core": "-p2"
},
"installer-paths": {
"web/core": ["type:drupal-core"],
"web/libraries/{$name}": [
"type:drupal-library",
"type:bower-asset",
"type:npm-asset"
],
"web/modules/contrib/{$name}": ["type:drupal-module"],
"web/profiles/contrib/{$name}": ["type:drupal-profile"],
"web/themes/contrib/{$name}": ["type:drupal-theme"],
"drush/Commands/{$name}": ["type:drupal-drush"]
},
"installer-types": ["bower-asset", "npm-asset"],
"drupal-scaffold": {
"initial": {
".editorconfig": "../.editorconfig",
".gitattributes": "../.gitattributes"
},
"file-mapping": {
"[web-root]/README.md": false
}
},
"merge-plugin": {
"include": [
"composer.*.json",
"web/modules/contrib/*/composer.libraries.json",
"web/modules/custom/*/composer.libraries.json"
],
"recurse": true,
"replace": false,
"ignore-duplicates": false,
"merge-dev": true,
"merge-extra": false,
"merge-extra-deep": false,
"merge-scripts": false
},
"patches": {
"drupal/config_installer": {
"#2991182: Fix for RuntimeException during installation": "https://www.drupal.org/files/issues/2018-09-06/2991182-9.patch"
},
"drupal/better_exposed_filters": {
"#2992717: Fix for toggling filter links": "https://www.drupal.org/files/issues/2018-08-15/multiple_links_filters-2992717-2.patch"
}
}
}
}