-
Notifications
You must be signed in to change notification settings - Fork 31
/
composer.json
38 lines (38 loc) · 1.03 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
{
"name": "symbiote/silverstripe-grouped-cms-menu",
"description": "Allows you to group CMS menu items.",
"type": "silverstripe-vendormodule",
"homepage": "https://github.com/symbiote/silverstripe-grouped-cms-menu",
"keywords": ["silverstripe", "menu", "module", "cms", "group", "grouped", "grouping"],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Marcus Nyeholt",
"homepage": "https://github.com/nyeholt"
},
{
"name": "Russ Michell",
"homepage": "https://github.com/phptek"
}
],
"require": {
"silverstripe/admin": "^1.3 || ^2.0"
},
"extra": {
"expose": [
"client"
],
"branch-alias": {
"dev-master": "4.1.x-dev"
}
},
"autoload": {
"psr-4": {
"Symbiote\\GroupedCmsMenu\\Admin\\": "src/Admin/"
}
},
"replace": {
"silverstripe-australia/grouped-cms-menu": "self.version"
},
"minimum-stability": "dev"
}