-
Notifications
You must be signed in to change notification settings - Fork 13
/
composer.json
33 lines (33 loc) · 906 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
{
"name": "srmklive/authy",
"description": "Plugin for enabling two-factor authentication in Laravel applications",
"keywords": ["api", "authentication", "two factor", "authy", "laravel two factor authentication", "two factor authentication"],
"homepage": "https://github.com/srmklive/laravel-twofactor-authentication",
"license": "MIT",
"require": {
"guzzlehttp/guzzle": "~6.0|~7.0",
"nesbot/carbon": "~1.2|~2.0",
"illuminate/support": "~5.1|~5.2|~5.3|~5.4|~5.5|~5.6|~5.7|~5.8|~6.0|~7.0|~8.0|~9.0"
},
"extra": {
"laravel": {
"providers": [
"Srmklive\\Authy\\Providers\\AuthyServiceProvider"
],
"aliases": {
"Authy": "Srmklive\\Authy\\Facades\\Authy"
}
}
},
"autoload":{
"psr-4": {
"Srmklive\\Authy\\": "src/"
}
},
"authors": [
{
"name": "Raza Mehdi",
"email": "[email protected]"
}
]
}