-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
122 lines (122 loc) · 4.12 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
{
"name": "drupal/recommended-project",
"description": "Drupal is an open source content management platform powering millions of websites and applications.",
"type": "project",
"license": "GPL-2.0-or-later",
"repositories": {
"drupal": {
"type": "composer",
"url": "https://packages.drupal.org/8"
},
"asset-packagist": {
"type": "composer",
"url": "https://asset-packagist.org"
}
},
"require": {
"composer/installers": "^1.2",
"cweagans/composer-patches": "^1.6",
"drupal/core": "^10.2",
"drush/drush": "^12.0.0",
"vlucas/phpdotenv": "^2.4",
"webmozart/path-util": "^2.3",
"drupal/address": "^1.4",
"drupal/geofield": "^1.0@beta",
"drupal/geofield_map": "^3",
"drupal/paragraphs": "^1.3",
"drupal/field_group": "^3.0",
"drupal/disable_field": "^3.0",
"drupal/geocoder": "^4.9",
"willdurand/geocoder": "^4.4",
"drupal/views_field_view": "^1.0@beta",
"drupal/token": "^1.5",
"drupal/better_exposed_filters": "^6.0",
"drupal/devel": "^5.0",
"drupal/force_password_change": "^2.0",
"drupal/allow_iframed_site": "^3.0",
"pear/archive_tar": "^1.4.11",
"drupal/mailsystem": "^4.2",
"drupal/svg_image": "^3.0",
"drupal/imce": "^3.0",
"drupal/jquery_ui_accordion": "^2.0",
"drupal/jquery_ui_slider": "^2.0",
"geocoder-php/google-maps-provider": "^4.6",
"drupal/classy": "^1.0",
"drupal/upgrade_status": "^4.0",
"drupal/symfony_mailer_lite": "^1.0"
},
"replace": {
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"preferred-install": "dist",
"autoloader-suffix": "Drupal8",
"allow-plugins": {
"composer/installers": true,
"drupal/console-extend-plugin": true,
"cweagans/composer-patches": true,
"phpstan/phpstan": true,
"php-http/discovery": false
},
"platform": {
"php": "8.1.23"
}
},
"extra": {
"enable-patching": true,
"patchLevel": {
"drupal/core": "-p2",
"drupal/entity_reference_revisions": "-p1"
},
"installer-types": [
"bower-asset",
"npm-asset"
],
"installer-paths": {
"core": [
"type:drupal-core"
],
"libraries/{$name}": [],
"modules/contrib/{$name}": [
"type:drupal-module"
],
"modules/custom/{$type}/{$name}": [
"type:drupal-custom-module"
],
"profiles/contrib/{$name}": [
"type:drupal-profile"
],
"profiles/custom/{$name}": [
"type:drupal-custom-profile"
],
"themes/{$name}": [
"type:drupal-theme"
]
},
"merge-plugin": {
"include": [
"modules/*/composer.json"
],
"recurse": false,
"replace": false,
"merge-extra": false,
"ignore-duplicates": true
},
"patches": {
"drupal/core": {
"add primary to primary patch for 9": "patches/primary_primary9.patch",
"https://www.drupal.org/node/2596937": "https://www.drupal.org/files/issues/array_merge_failure_on-2596937-65.patch",
"custom access denied page": "patches/change_access_denied-2.patch",
"https://www.drupal.org/node/2822460": "https://www.drupal.org/files/issues/no_hook_to_edit-2822460-12.patch",
"https://www.drupal.org/node/2838391": "patches/allow_administer_content.patch"
},
"drupal/imce": {
"got a fatal wsod from this on terms for a bit. adding in case": "patches/imce-fix-just-in-case.patch"
},
"drupal/paragraphs": {
"https://www.drupal.org/node/2823909": "patches/consider_field-2823909-12.patch"
}
}
}
}