-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
121 lines (121 loc) · 4.06 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
{
"name": "ueberbit/uedev",
"description": "uedev website",
"type": "project",
"license": "GPL-2.0-or-later",
"homepage": "https://ueberbit.de",
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
}
],
"require": {
"composer/installers": "^1.9",
"drupal/admin_toolbar": "^3.1",
"drupal/coffee": "^1.2",
"drupal/core-composer-scaffold": "^9.3",
"drupal/core-project-message": "^9.3",
"drupal/core-recommended": "^9.3",
"drupal/default_content": "^2.0@alpha",
"drupal/external_entities": "^2.0@alpha",
"drupal/gin": "^3.0@beta",
"drupal/gin_login": "^1.2",
"drupal/gin_toolbar": "^1.0@beta",
"drupal/pathauto": "^1.10",
"drupal/rest_menu_items": "^3.0",
"drupal/restui": "^1.20",
"drupal/search_api": "^1.23",
"drupal/twig_tweak": "^3.1",
"drupal/xnttmanager": "^1.0@beta",
"drush/drush": "^11.0"
},
"require-dev": {
"cweagans/composer-patches": "^1.7",
"drupal/core-dev": "^9.3"
},
"conflict": {
"drupal/drupal": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"platform": {
"php": "8.1"
},
"sort-packages": true,
"allow-plugins": {
"composer/installers": true,
"drupal/core-composer-scaffold": true,
"drupal/core-project-message": true,
"cweagans/composer-patches": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"extra": {
"composer-exit-on-patch-failure": true,
"enable-patching": true,
"patches": {
"drupal/core": {
"Add open in vscode link": "patches/vscode_link.patch"
},
"drupal/external_entities": {
"Remove wrapper array": "https://www.drupal.org/files/issues/2019-07-03/2988391-3-views_rest_support.patch"
}
},
"drupal-scaffold": {
"locations": {
"web-root": "web/"
},
"file-mapping": {
"[web-root]/.ht.router.php": false,
"[web-root]/example.gitignore": false,
"[web-root]/INSTALL.txt": false,
"[web-root]/modules/README.txt": false,
"[web-root]/profiles/README.txt": false,
"[web-root]/README.md": false,
"[web-root]/robots.txt": false,
"[web-root]/sites/default/default.services.yml": false,
"[web-root]/sites/default/default.settings.php": false,
"[web-root]/sites/example.settings.local.php": false,
"[web-root]/sites/example.sites.php": false,
"[web-root]/sites/README.txt": false,
"[web-root]/themes/README.txt": false,
"[web-root]/web.config": false,
"[web-root]/.eslintrc.json": false,
"[web-root]/.eslintignore": false,
"[web-root]/.csslintrc": false,
"[web-root]/.gitignore": false
}
},
"installer-paths": {
"web/core": [
"type:drupal-core"
],
"web/libraries/{$name}": [
"type:drupal-library"
],
"web/modules/contrib/{$name}": [
"type:drupal-module"
],
"web/profiles/contrib/{$name}": [
"type:drupal-profile"
],
"web/themes/contrib/{$name}": [
"type:drupal-theme"
],
"drush/Commands/contrib/{$name}": [
"type:drupal-drush"
],
"web/modules/custom/{$name}": [
"type:drupal-custom-module"
],
"web/profiles/custom/{$name}": [
"type:drupal-custom-profile"
],
"web/themes/custom/{$name}": [
"type:drupal-custom-theme"
]
}
}
}