forked from antonioribeiro/google2fa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
52 lines (52 loc) · 1.29 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "pragmarx/google2fa",
"description": "A One Time Password Authentication package, compatible with Google Authenticator.",
"keywords": [
"authentication",
"two factor authentication",
"google2fa",
"2fa"
],
"license": "MIT",
"authors": [
{
"name": "Antonio Carlos Ribeiro",
"email": "[email protected]",
"role": "Creator & Designer"
}
],
"require": {
"php": "^7.1|^8.0",
"paragonie/constant_time_encoding": "~1.0|~2.0",
"paragonie/random_compat": ">=1",
"symfony/polyfill-php56": "~1.2"
},
"require-dev": {
"phpunit/phpunit": "~4|~5|~6|~7|~8|~9"
},
"autoload": {
"psr-4": {
"PragmaRX\\Google2FA\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PragmaRX\\Google2FA\\Tests\\": "tests/"
}
},
"extra": {
"component": "package",
"branch-alias": {
"dev-master": "2.0-dev"
}
},
"scripts": {
"test": "bash ./tests/tools/test.sh",
"analyse": "bash ./tests/tools/analyse.sh",
"branch-alias": {
"dev-master": "2.0-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}