-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 1.51 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
{
"name": "fractas/security-layouts",
"description": "SilverStripe module for fancier security layouts (login/lost password etc.)",
"type": "silverstripe-vendormodule",
"homepage": "https://github.com/fractaslabs/silverstripe-security-layouts",
"keywords": ["silverstripe", "CMS", "security", "login"],
"license": "BSD-3-Clause",
"support": {
"issues": "https://github.com/fractaslabs/silverstripe-security-layouts/issues"
},
"authors": [{
"name": "Milan Jelicanin",
"email": "[email protected]",
"homepage": "https://www.fractas.com/"
}, {
"name": "Petar Simic",
"email": "[email protected]",
"homepage": "https://www.fractas.com/"
}],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"silverstripe/vendor-plugin": "^1.0",
"silverstripe/cms": "^4.0",
"silverstripe/framework": "^4.0"
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
},
"expose": [
"client/dist"
],
"screenshoots": [
"docs/images/security-layout-log-in.png",
"docs/images/security-layout-lost-password.png",
"docs/images/security-layout-password-sent.png",
"docs/images/security-layout-log-out.png",
"docs/images/security-layout-log-in-logged-in.png"
]
},
"autoload": {
"psr-4": {
"Fractas\\SecurityLayouts\\": "src/"
}
}
}