-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
156 lines (156 loc) · 4.75 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
{
"name": "almunnings/drupal-boilerplate",
"description": "Project template for Drupal",
"type": "project",
"license": "GPL-2.0+",
"authors": [
{
"name": "Al Munnings [email protected]",
"role": "Developer"
}
],
"repositories": {
"drupal": {
"type": "composer",
"url": "https://packages.drupal.org/8"
},
"assets": {
"type": "composer",
"url": "https://asset-packagist.org"
},
"dvb": {
"type": "package",
"package": {
"name": "drupal/dvb",
"version": "dev-custom",
"type": "drupal-theme",
"source": {
"type": "git",
"url": "https://github.com/almunnings/drupal-vite-bootstrap.git",
"reference": "main"
}
}
}
},
"require": {
"php": ">= 8.1",
"composer": ">= 2.7",
"bower-asset/dragula": "^3.7",
"composer/installers": "^2.0",
"cweagans/composer-patches": "^1.7.1",
"drupal/address": "^1.11",
"drupal/admin_toolbar": "^3.2",
"drupal/ajax_loader": "^2.1",
"drupal/allowed_formats": "^2.0",
"drupal/block_field": "^1.0@RC",
"drupal/core-composer-scaffold": "^10.2",
"drupal/core-recommended": "^10.2",
"drupal/dvb": "dev-custom",
"drupal/field_group": "^3.4",
"drupal/gin": "^3.0@RC",
"drupal/gin_login": "^2.0",
"drupal/gin_toolbar": "^1.0@RC",
"drupal/graphql": "^4.4",
"drupal/graphql_compose": "^2.1@beta",
"drupal/graphql_export": "^2.0",
"drupal/layout_paragraphs": "^2.0",
"drupal/linkit": "^6.1",
"drupal/memcache": "^2.5",
"drupal/menu_link_attributes": "^1.3",
"drupal/metatag": "^2.0",
"drupal/paragraphs": "^1.15",
"drupal/pathauto": "^1.11",
"drupal/redirect": "^1.8",
"drupal/shield": "^1.7",
"drupal/svg_image": "^3.0",
"drupal/symfony_mailer": "^1.4",
"drupal/tablefield": "^2.4",
"drupal/typed_data": "^1.0@beta",
"drupal/viewfield": "^3.0@beta",
"drupal/webform": "^6.2@beta",
"drush/drush": "^12",
"oomphinc/composer-installers-extender": "^2.0",
"vlucas/phpdotenv": "^5.5"
},
"require-dev": {
"drupal/core-dev": "^10.2",
"drupal/devel": "^5.1",
"phpcompatibility/php-compatibility": "^9.3"
},
"conflict": {
"drupal/drupal": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"composer/installers": true,
"cweagans/composer-patches": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"drupal/core-composer-scaffold": true,
"oomphinc/composer-installers-extender": true,
"phpstan/extension-installer": true,
"php-http/discovery": true
},
"audit": {
"abandoned": "report"
},
"platform": {
"php": "8.1"
},
"process-timeout": 600,
"sort-packages": true
},
"autoload": {
"files": [
"load.environment.php"
]
},
"extra": {
"enable-patching": true,
"composer-exit-on-patch-failure": true,
"installer-types": [
"bower-asset",
"npm-asset"
],
"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/contrib/{$name}": [
"type:drupal-drush"
],
"web/modules/custom/{$name}": [
"type:drupal-custom-module"
],
"web/themes/custom/{$name}": [
"type:drupal-custom-theme"
]
},
"drupal-scaffold": {
"file-mapping": {},
"locations": {
"web-root": "web/"
}
},
"patches": {
"drupal/tablefield": {
"3397688: PHP 8.2 support": "https://www.drupal.org/files/issues/2023-12-21/tablefield-php8.2-deprecated-creation-of-dynamic-properties-3397688-9.patch"
}
}
}
}