forked from born05/craft-twofactorauthentication
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 1.59 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": "born05/craft-twofactorauthentication",
"description": "Craft 3 plugin for two-factor or two-step login using Time Based OTP.",
"version": "2.0.0-beta.13",
"type": "craft-plugin",
"keywords": [
"craftcms-plugin",
"two-factor authentication",
"two-factor",
"two-step",
"authentication",
"login",
"craftcms"
],
"license": "MIT",
"homepage": "https://github.com/born05/craft-twofactorauthentication",
"authors": [
{
"name": "Roel van Hintum",
"email": "[email protected]"
}
],
"require": {
"craftcms/cms": "^3.0.0",
"spomky-labs/otphp": "8.3.2"
},
"autoload": {
"psr-4": {
"born05\\twofactorauthentication\\": "src/"
}
},
"support": {
"email": "[email protected]",
"issues": "https://github.com/born05/craft-twofactorauthentication/issues",
"source": "https://github.com/born05/craft-twofactorauthentication",
"docs": "https://github.com/born05/craft-twofactorauthentication/blob/master/README.md",
"rss": "https://github.com/born05/craft-twofactorauthentication/releases.atom"
},
"extra": {
"name": "Two-Factor Authentication",
"handle": "two-factor-authentication",
"developer": "Born05",
"developerUrl": "https://born05.com",
"documentationUrl": "https://github.com/born05/craft-twofactorauthentication",
"changelogUrl": "https://raw.githubusercontent.com/born05/craft-twofactorauthentication/master/CHANGELOG.md"
}
}