-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathcomposer.json
49 lines (49 loc) · 1.28 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
{
"name": "cyber-duck/silverstripe-seo",
"description": "A SilverStripe module to optimise the Meta, crawling, indexing, and sharing of your website content",
"type": "silverstripe-vendormodule",
"homepage": "http://github.com/cyber-duck/silverstripe-seo",
"keywords": [
"silverstripe SEO",
"silverstripe",
"silverstripe 4",
"search engine optimisation",
"seo",
"meta",
"crawling",
"indexing",
"xml-sitemap"
],
"license": "MIT",
"authors": [
{
"name": "Andrew Mc Cormack",
"email": "[email protected]",
"homepage": "https://github.com/Andrew-Mc-Cormack"
}
],
"support": {
"issues": "http://github.com/cyber-duck/silverstripe-seo/issues"
},
"require": {
"php": ">=5.6",
"silverstripe/cms": "^4.0",
"silverstripe/framework": "^4.0"
},
"autoload": {
"psr-4": {
"CyberDuck\\SEO\\": "src/",
"CyberDuck\\SEO\\Tests\\": "tests/"
}
},
"extra": {
"installer-name": "seo",
"expose": [
"assets/css",
"assets/img",
"assets/js"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}