-
Notifications
You must be signed in to change notification settings - Fork 18
/
composer.json
35 lines (35 loc) · 1.34 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
{
"name": "dljoseph/silverstripe-maintenance-mode",
"description": "SilverStripe Maintenance Mode Module. Allows an administrator to put site in offline mode with 503 status to display a 'Coming Soon', 'Under Construction' or 'Down for Maintenance' Page to regular visitors, whilst allowing a logged in admin user to browse and make changes to the site.",
"type": "silverstripe-module",
"homepage": "http://github.com/dljoseph/silverstripe-maintenance-mode",
"keywords": [
"silverstripe","maintenance mode","under construction","coming soon",
"offline page","utility page","landing page"
],
"license": "BSD-3-Clause",
"authors": [
{"name": "Darren-Lee Joseph","email": "[email protected]"},
{"name": "Patrick Nelson","email": "[email protected]"},
{"name": "Myles Beardsmore","email": "[email protected]"}
],
"support": {
"issues": "http://github.com/dljoseph/silverstripe-maintenance-mode/issues"
},
"require": {
"silverstripe/vendor-plugin": "^1.0",
"silverstripe/cms": "~4.0"
},
"autoload": {
"psr-4": {
"dljoseph\\MaintenanceMode\\": "src/"
}
},
"extra": {
"installer-name": "maintenance-mode",
"expose": [
"client"
]
},
"minimum-stability": "dev"
}