-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
36 lines (36 loc) · 985 Bytes
/
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
{
"name": "kinglozzer/metatitle",
"description": "Re-adds the 'MetaTitle' field for SilverStripe 4",
"type": "silverstripe-vendormodule",
"homepage": "https://github.com/kinglozzer/silverstripe-metatitle",
"keywords": ["silverstripe", "meta", "title", "metatitle"],
"authors": [
{
"name": "Loz Calver",
"email": "[email protected]"
}
],
"license": "BSD-3-Clause",
"support": {
"issues": "https://github.com/kinglozzer/silverstripe-metatitle/issues"
},
"require": {
"php": "^8.1",
"silverstripe/cms": "^5"
},
"require-dev": {
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"Kinglozzer\\SilverStripeMetaTitle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Kinglozzer\\SilverStripeMetaTitle\\Tests\\": "tests/"
}
},
"prefer-stable": true,
"minimum-stability": "dev"
}