forked from symbiote/silverstripe-multisites
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 1.06 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
{
"name": "symbiote/silverstripe-multisites",
"description": "Allows for multiple websites to be managed through a single site tree.",
"type": "silverstripe-vendormodule",
"keywords": ["silverstripe", "multisites", "subsites"],
"homepage": "http://github.com/symbiote/silverstripe-multisites",
"authors": [
{
"name": "Marcus Nyeholt",
"email": "[email protected]"
}
],
"require":
{
"silverstripe/cms": "~4.0",
"silverstripe/admin": "^1.3",
"symbiote/silverstripe-multivaluefield": "~5.0"
},
"require-dev": {
"phpunit/phpunit": "^5.7"
},
"extra": {
"expose": [
"client"
],
"installer-name": "multisites",
"branch-alias": {
"dev-master": "5.2.x-dev"
}
},
"replace": {
"sheadawson/silverstripe-multisites": "self.version",
"silverstripe-australia/silverstripe-multisites": "self.version"
},
"autoload": {
"psr-4": {
"Symbiote\\Multisites\\": "src/",
"Symbiote\\Multisites\\Tests\\": "tests/"
}
},
"prefer-stable": true,
"minimum-stability": "dev"
}