-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
34 lines (34 loc) · 908 Bytes
/
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
{
"name": "raditzfarhan/laravel-user-security",
"description": "Add security pin, mnemonic key and 2fa authentication feature to users.",
"type": "laravel-package",
"keywords": [ "laravel", "lumen", "user", "security", "pin", "mnemonic", "2fa" ],
"require": {
"illuminate/support": "^6.0|^7.0|^8.0",
"illuminate/database": "^6.0|^7.0|^8.0",
"furqansiddiqui/bip39-mnemonic-php": "dev-master",
"pragmarx/google2fa": "^6.0|^7.0|^8.0",
"endroid/qr-code": "^3.7"
},
"license": "MIT",
"authors": [
{
"name": "Raditz Farhan",
"email": "raditzfarhan@gmail.com"
}
],
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"RaditzFarhan\\UserSecurity\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [ "RaditzFarhan\\UserSecurity\\UserSecurityServiceProvider" ],
"aliases": {
"RFAuthenticator": "RaditzFarhan\\UserSecurity\\Facades\\RFAuthenticator"
}
}
}
}