forked from dochne/google-authenticator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 1013 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
35
36
37
{
"name": "dolondro/google-authenticator",
"description": "Code to authenticate against the Google Authenticator app",
"license": "MIT",
"authors": [
{
"name": "Doug Nelson",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4",
"christian-riesen/base32": "^1.2",
"psr/cache": "^1.0",
"paragonie/random_compat": "^2.0|~9.99"
},
"require-dev": {
"phpunit/phpunit": "~6",
"endroid/qr-code": "~2.2|~3",
"cache/filesystem-adapter": "^1.0",
"phpstan/phpstan": "^0.11.3",
"cache/array-adapter": "^1.0"
},
"suggests": {
"endroid/qr-code": "Allows use of EndroidQrImageGenerator to generate the QR code images"
},
"autoload": {
"psr-4": {
"Dolondro\\GoogleAuthenticator\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Dolondro\\GoogleAuthenticator\\Tests\\": "tests"
}
}
}