-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
48 lines (48 loc) · 1.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
{
"name": "wieni/wmcontent_security_policy",
"type": "drupal-module",
"description": "Secure your Drupal site using a Content Security Policy header",
"license": "MIT",
"authors": [
{
"name": "Wieni",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.2 || ^8.0",
"drupal/core": "^9.3 || ^10.0",
"drupal/multivalue_form_element": "^1 || ^1@beta"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.0",
"wieni/wmcodestyle": "^1.1"
},
"autoload-dev": {
"psr-4": {
"Drupal\\wmcontent_security_policy\\": "src/"
}
},
"scripts": {
"coding-standards": [
"@composer normalize",
"php-cs-fixer fix --config=.php_cs.php",
"phpstan analyse"
]
},
"extra": {
"composer-exit-on-patch-failure": true,
"patches": {
"drupal/core": {
"#2264739: Allow multiple field widgets to not use tabledrag": "https://www.drupal.org/files/issues/2023-02-03/2264739-130-9.5.x.patch"
},
"drupal/multivalue_form_element": {
"#3199172 Handle default values of nested elements": "https://www.drupal.org/files/issues/2023-04-03/3199172-8.patch",
"#3199298 Don't add an empty element when the multivalue element is disabled": "https://git.drupalcode.org/project/multivalue_form_element/-/merge_requests/3.patch",
"#3200306 Add support for non-orderable multivalue form elements": "https://git.drupalcode.org/project/multivalue_form_element/-/commit/ef4d01ae56a809fc2349d8fec8185ace3b63d15d.patch"
}
}
}
}