-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
107 lines (107 loc) · 3.93 KB
/
composer.json
File metadata and controls
107 lines (107 loc) · 3.93 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
{
"name": "mobomo/lando-standard",
"description": "Project template for Drupal 8 projects with a relocated document root",
"type": "project",
"license": "GPL-2.0-or-later",
"homepage": "https://www.drupal.org/project/drupal",
"support": {
"docs": "https://www.drupal.org/docs/user_guide/en/index.html",
"chat": "https://www.drupal.org/node/314178"
},
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
}
],
"require": {
"composer/installers": "^2.3",
"cweagans/composer-patches": "^1.7",
"drupal/admin_toolbar": "^3.5",
"drupal/components": "^3.0.0-beta3",
"drupal/config_ignore": "^3.3",
"drupal/core-composer-scaffold": "^11.0",
"drupal/core-project-message": "^11.0",
"drupal/core-recommended": "^11.0",
"drupal/redis": "^1.8",
"drupal/twig_tweak": "^3.4",
"drupal/uswds_base": "^3.8",
"drush/drush": "^13.1",
"mglaman/composer-drupal-lenient": "^1.0",
"predis/predis": "^2.2"
},
"require-dev": {
"drupal/coder": "^8.3",
"drupal/core-dev": "^11.0",
"drupal/devel": "^5.3",
"kint-php/kint": "^5.1",
"mglaman/drupal-check": "^1.5",
"mglaman/phpstan-drupal": "^1.2",
"php-parallel-lint/php-console-highlighter": "^1.0.0",
"php-parallel-lint/php-parallel-lint": "^1.4",
"squizlabs/php_codesniffer": "^3.10"
},
"conflict": {
"drupal/drupal": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"drupal-scaffold": {
"locations": {
"web-root": "webroot"
},
"file-mapping": {
"[web-root]/sites/development.services.yml": false
}
},
"installer-paths": {
"webroot/core": ["type:drupal-core"],
"webroot/libraries/{$name}": ["type:drupal-library"],
"webroot/modules/contrib/{$name}": ["type:drupal-module"],
"webroot/profiles/contrib/{$name}": ["type:drupal-profile"],
"webroot/themes/contrib/{$name}": ["type:drupal-theme"],
"drush/Commands/contrib/{$name}": ["type:drupal-drush"],
"webroot/modules/custom/{$name}": ["type:drupal-custom-module"],
"webroot/themes/custom/{$name}": ["type:drupal-custom-theme"]
},
"patches": {
"drupal/block_visibility_groups": {
"3131294 - Drupal 9 Compatibility": "https://www.drupal.org/files/issues/2020-06-10/block_visibility_groups-d9-compatibility-3131294-16.patch"
},
"drupal/maxlength": {
"3119810 - Convert pre_render callbacks functions to trusted methods": "https://www.drupal.org/files/issues/2020-04-10/maxlength-pre-render-3119810-3.patch"
},
"drupal/blockgroup": {
"3156125 - Missing 'config_export' definition": "https://www.drupal.org/files/issues/2020-07-01/3156125-2.patch"
},
"drupal/uswds_base": {
"Drupal 11 compatibility": "patches/uswds_base/drupal11.patch"
}
},
"drupal-lenient": {
"allowed-list": [
"drupal/uswds_base",
"drupal/components"
]
}
},
"config": {
"platform": {
"php": "8.3",
"ext-gd": "1"
},
"sort-packages": true,
"allow-plugins": {
"composer/installers": true,
"cweagans/composer-patches": true,
"drupal/core-composer-scaffold": true,
"drupal/core-project-message": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"php-http/discovery": true,
"phpstan/extension-installer": true,
"acquia/blt": true,
"mglaman/composer-drupal-lenient": true
}
}
}