-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
42 lines (40 loc) · 1.07 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
{
"name": "sam002/yii2-otp",
"type": "yii2-extension",
"description": "YII2 extension for generating one time passwords according to RFC 4226/6238 (HOTP/TOTP Algorithm) and authentication widget",
"keywords": ["yii2", "otp", "hotp", "totp", "two-factor authentication", "2FA", "two-factor", "authentication"],
"license": "LGPL-3.0",
"support": {
"issues": "https://github.com/sam002/yii2-otp/issues",
"source": "https://github.com/sam002/yii2-otp"
},
"authors": [
{
"name": "Semen Dubina",
"email": "yii2-otp@sam002.net",
"homepage": "http://sam002.net/project/yii2-otp",
"role": "Developer"
}
],
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"require": {
"spomky-labs/otphp": "^8.3",
"2amigos/qrcode-library" : "^1.1.0"
},
"require-dev": {
"yiisoft/yii2-codeception": "~2.0.0",
"codeception/codeception": "*",
"predis/predis": "^1.0",
"yiisoft/yii2-redis": "~2.0.0"
},
"autoload": {
"psr-4": {
"sam002\\otp\\": "src"
}
}
}