forked from silverstripe/silverstripe-sitebanner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
33 lines (33 loc) · 984 Bytes
/
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
{
"name": "nzta/silverstripe-sitebanner",
"description": "Site-wide banners activated through the CMS",
"type": "silverstripe-vendormodule",
"homepage": "https://github.com/NZTA/silverstripe-sitebanner",
"keywords": ["silverstripe", "banner", "cms"],
"license": "BSD-3-Clause",
"support": {
"issues": "https://github.com/NZTA/silverstripe-sitebanner/issues"
},
"require": {
"silverstripe/framework": "~4.0",
"silverstripe/cms": "~4.0"
},
"require-dev": {
"phpunit/PHPUnit": "~4.8"
},
"extra": {
"installer-name": "sitebanner",
"branch-alias": {
"dev-master": "2.0.x-dev"
}
},
"autoload": {
"psr-4": {
"NZTA\\SiteBanner\\Extensions\\": "src/extensions",
"NZTA\\SiteBanner\\Models\\": "src/models"
}
},
"suggest": {
"symbiote/silverstripe-gridfieldextensions": "Allows sorting of site banners"
}
}