-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
51 lines (51 loc) · 1.44 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
{
"name": "wieni/wmmeta",
"type": "drupal-module",
"description": "Provides meta fields & entity scheduling functionality",
"license": "MIT",
"authors": [
{
"name": "Wieni",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1 || ^8.0",
"ext-json": "*",
"drupal/core": "^9.3 || ^10.0",
"drupal/eck": "^1.0@alpha || ^2.0",
"spatie/schema-org": "^2 || ^3",
"drupal/entity_model": "^3.1"
},
"require-dev": {
"composer-runtime-api": "^2.0",
"ergebnis/composer-normalize": "^2.0",
"wieni/wmcodestyle": "^1.7"
},
"suggest": {
"drupal/maxlength": "Allows you to set a maximum length for eg. meta description fields (only ^1.0)",
"wieni/wmcontroller": "Integrates well with this module (only ^0.8.4 | ^0.9 | ^0.10)",
"wieni/wmmedia": "Integrates well with this module (only ^2.0)"
},
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"coding-standards": [
"@composer normalize",
"rector process",
"php-cs-fixer fix --config=.php_cs.php",
"phpstan analyse"
]
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
}
}
}