-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathcomposer.json
49 lines (49 loc) · 1.42 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
48
49
{
"name": "getgrav/grav-plugin-login",
"description": "Enables user authentication and login screen.",
"keywords": ["login", "authentication", "admin", "security"],
"homepage": "https://github.com/getgrav/grav-plugin-login",
"license": "MIT",
"authors": [
{
"name": "Team Grav",
"email": "[email protected]",
"homepage": "http://getgrav.org",
"role": "Developer"
},
{
"name": "Sommerregen",
"email": "[email protected]",
"homepage": "http://benjamin-regler.de",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/getgrav/grav-plugin-login/issues",
"irc": "https://gitter.im/getgrav/grav",
"forum": "http://getgrav.org/forum",
"docs": "https://github.com/getgrav/grav-plugin-login/blob/master/README.md"
},
"require": {
"php": ">=7.3.6",
"ext-json": "*",
"birke/rememberme": "^1.0",
"robthree/twofactorauth": "^1.8",
"bacon/bacon-qr-code": "^2.0"
},
"autoload": {
"psr-4": {
"Grav\\Plugin\\Login\\": "classes/",
"Grav\\Plugin\\Console\\": "cli/"
},
"classmap": [
"login.php"
]
},
"config": {
"platform": {
"php": "7.3.6"
}
}
}