-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
71 lines (71 loc) · 1.76 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "chillerlan/php-authenticator",
"description": "A generator for counter- and time based 2-factor authentication codes (Google Authenticator). PHP 8.2+",
"homepage": "https://github.com/chillerlan/php-authenticator",
"license": "MIT",
"type": "library",
"keywords": [
"2fa", "authenticator", "google2fa", "hotp", "mfa", "otp", "rfc4226", "rfc6238", "tfa", "totp", "two factor"
],
"authors": [
{
"name": "Smiley",
"email": "[email protected]",
"homepage": "https://github.com/codemasher"
},
{
"name": "Contributors",
"homepage":"https://github.com/chillerlan/php-authenticator/graphs/contributors"
}
],
"funding": [
{
"type": "Ko-Fi",
"url": "https://ko-fi.com/codemasher"
}
],
"support": {
"issues": "https://github.com/chillerlan/php-authenticator/issues",
"source": "https://github.com/chillerlan/php-authenticator"
},
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": "^8.2",
"chillerlan/php-settings-container": "^3.2.1",
"paragonie/constant_time_encoding": "^3.0"
},
"require-dev": {
"ext-curl": "*",
"ext-json": "*",
"ext-sodium": "*",
"phpmd/phpmd": "^2.15",
"phpstan/phpstan": "^1.11",
"phpstan/phpstan-deprecation-rules": "^1.2",
"phpunit/phpunit": "^11.2",
"squizlabs/php_codesniffer": "^3.10"
},
"suggest": {
"chillerlan/php-qrcode": "Create QR Codes for use with an authenticator app."
},
"autoload": {
"psr-4": {
"chillerlan\\Authenticator\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"chillerlan\\AuthenticatorTest\\": "tests"
}
},
"scripts": {
"phpcs": "@php vendor/bin/phpcs",
"phpunit": "@php vendor/bin/phpunit",
"phpstan": "@php vendor/bin/phpstan"
},
"config": {
"lock": false,
"sort-packages": true,
"platform-check": true
}
}