forked from Quinn-Interactive/silverstripe-seo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
66 lines (66 loc) · 1.62 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"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": {
"php": "^8.1",
"jonom/silverstripe-text-target-length": "^2.0",
"kub-at/php-simple-html-dom-parser": "^1.9",
"silverstripe/cms": "^5",
"wilr/silverstripe-googlesitemaps": "^3.1"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"rector/rector": "^1.2"
},
"autoload": {
"psr-4": {
"QuinnInteractive\\Seo\\": "src/",
"QuinnInteractive\\Seo\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-develop": "3.x-dev"
},
"expose": [
"dist"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"composer/installers": true,
"silverstripe/vendor-plugin": true
}
}
}