forked from antonioribeiro/google2fa
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 837 Bytes
/
composer.json
File metadata and controls
30 lines (30 loc) · 837 Bytes
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
{
"name": "pragmarx/google2fa",
"description": "A One Time Password Authentication package, compatible with Google Authenticator.",
"keywords": ["authentication", "two factor authentication", "google2fa", "laravel"],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Antonio Carlos Ribeiro",
"email": "acr@antoniocarlosribeiro.com",
"role": "Creator & Designer"
}
],
"require": {
"php": ">=5.3.7",
"christian-riesen/base32": "~1.0",
"simplesoftwareio/simple-qrcode" : "1.3.*"
},
"require-dev": {
"phpspec/phpspec": "~2.1"
},
"autoload": {
"psr-4": {
"PragmaRX\\Google2FA\\": "src/"
}
},
"extra": {
"component": "package",
"frameworks": ["Laravel"]
}
}