forked from srmklive/laravel-twofactor-authentication
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
33 lines (33 loc) · 832 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"],
"homepage": "https://github.com/srmklive/laravel-twofactor-authentication",
"license": "MIT",
"require": {
"guzzlehttp/guzzle": "~6.0",
"nesbot/carbon": "~1.2",
"illuminate/support": "~5.1|~5.2|~5.3|~5.4|~5.5"
},
"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]"
}
]
}