-
Notifications
You must be signed in to change notification settings - Fork 26
/
composer.json
54 lines (54 loc) · 1.78 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
50
51
52
53
54
{
"name": "born05/craft-twofactorauthentication",
"description": "Craft 4 plugin for two-factor or two-step login using Time Based OTP.",
"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": {
"php": "^8.1",
"craftcms/cms": "^4.0.0-alpha",
"spomky-labs/otphp": "^11.0.0",
"endroid/qr-code": "^5.0.0"
},
"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/craft-4/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/craft-4/CHANGELOG.md"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
}
}