forked from ethercreative/seo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (39 loc) · 922 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
37
38
39
40
{
"name": "ether/seo",
"license": "MIT",
"description": "SEO utilities including a unique field type, sitemap, & redirect manager",
"type": "craft-plugin",
"minimum-stability": "dev",
"require": {
"php": "^8.0",
"craftcms/cms": "^4.0"
},
"autoload": {
"psr-4": {
"ether\\seo\\": "src/"
}
},
"support": {
"issues": "https://github.com/ethercreative/seo",
"docs": "https://github.com/ethercreative/seo/blob/v3/README.md"
},
"extra": {
"handle": "seo",
"name": "SEO",
"developer": "Ether Creative",
"developerUrl": "https://ethercreative.co.uk",
"class": "ether\\seo\\Seo"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
},
"prefer-stable": true,
"require-dev": {
"phpstan/phpstan": "^1.6",
"craftcms/ecs": "dev-main",
"craftcms/rector": "dev-main"
}
}