forked from dochne/google-authenticator
-
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) · 847 Bytes
/
Copy pathcomposer.json
File metadata and controls
30 lines (30 loc) · 847 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": "dolondro/google-authenticator",
"description": "Code to authenticate against the Google Authenticator app",
"license": "MIT",
"authors": [
{
"name": "Doug Nelson",
"email": "dougnelson@silktide.com"
}
],
"require": {
"Christian-Riesen/base32": "^1.2",
"psr/cache": "^1.0",
"paragonie/random_compat": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "~6",
"endroid/QrCode": "~2.2|~3",
"cache/filesystem-adapter": "^1.0"
},
"suggests": {
"endroid/QrCode": "Allows use of EndroidQrImageGenerator to generate the QR code images"
},
"autoload": {
"psr-4": {
"Dolondro\\GoogleAuthenticator\\": "src",
"Dolondro\\GoogleAuthenticator\\Tests\\": "tests"
}
}
}