forked from Quinn-Interactive/silverstripe-seo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.26 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": "quinninteractive/silverstripe-seo",
"description": "An all-in-one SEO module for SilverStripe",
"type": "silverstripe-vendormodule",
"keywords": ["silverstripe", "seo", "facebook", "twitter", "opengraph", "search", "optimization", "optimisation"],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Reece Alexander",
"homepage": "https://vulcandigital.co.nz",
"role": "author"
},
{
"name": "Fred Condo",
"homepage": "https://quinn.com",
"role": "maintainer"
},
{
"name": "Phil Quinn",
"homepage": "https://quinn.com",
"role": "maintainer"
}
],
"require": {
"silverstripe/cms": "^4.1",
"jonom/silverstripe-text-target-length": "^2",
"wilr/silverstripe-googlesitemaps": "^2.1",
"kub-at/php-simple-html-dom-parser": "^1.7",
"axllent/silverstripe-trailing-slash": "^2.1"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"squizlabs/php_codesniffer": "3.*"
},
"autoload": {
"psr-4": {
"QuinnInteractive\\Seo\\": "src/",
"QuinnInteractive\\Seo\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-develop": "2.x-dev"
},
"expose": [
"dist"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}