-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 833 Bytes
/
composer.json
File metadata and controls
32 lines (32 loc) · 833 Bytes
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
{
"name": "wieni/wmcontroller",
"type": "drupal-module",
"description": "Adds support for bundle-specific controllers for Drupal 9 entities.",
"license": "MIT",
"authors": [
{
"name": "Wieni",
"email": "info@wieni.be"
}
],
"require": {
"php": "^8.0",
"drupal/core": "^9.1 || ^10 || ^11",
"wieni/wmtwig": "^1.0"
},
"require-dev": {
"composer-runtime-api": "^2.0",
"ergebnis/composer-normalize": "^2.0",
"wieni/wmcodestyle": "^1.7"
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"coding-standards": [
"@composer normalize",
"rector process",
"php-cs-fixer fix --config=.php_cs.php",
"phpstan analyse"
]
}
}