forked from chillerlan/php-authenticator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
60 lines (60 loc) · 1.5 KB
/
composer.json
File metadata and controls
60 lines (60 loc) · 1.5 KB
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
{
"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": "smiley@chillerlan.net",
"homepage": "https://github.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.0",
"paragonie/constant_time_encoding": "^2.6"
},
"require-dev": {
"ext-curl": "*",
"ext-gmp": "*",
"ext-json": "*",
"ext-sodium": "*",
"phan/phan": "^5.4",
"phpmd/phpmd": "^2.13",
"phpunit/phpunit": "^10.2",
"squizlabs/php_codesniffer": "^3.7"
},
"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": {
"phpunit": "@php vendor/bin/phpunit",
"phan": "@php vendor/bin/phan --allow-polyfill-parser"
},
"config": {
"lock": false,
"sort-packages": true,
"platform-check": true
}
}