| 1 |
efrain |
1 |
{
|
|
|
2 |
"name": "spomky-labs/otphp",
|
|
|
3 |
"type": "library",
|
|
|
4 |
"description": "A PHP library for generating one time passwords according to RFC 4226 (HOTP Algorithm) and the RFC 6238 (TOTP Algorithm) and compatible with Google Authenticator",
|
|
|
5 |
"license": "MIT",
|
|
|
6 |
"keywords": ["otp", "hotp", "totp", "RFC 4226", "RFC 6238", "Google Authenticator", "FreeOTP"],
|
|
|
7 |
"homepage": "https://github.com/Spomky-Labs/otphp",
|
|
|
8 |
"authors": [
|
|
|
9 |
{
|
|
|
10 |
"name": "Florent Morselli",
|
|
|
11 |
"homepage": "https://github.com/Spomky"
|
|
|
12 |
},
|
|
|
13 |
{
|
|
|
14 |
"name": "All contributors",
|
|
|
15 |
"homepage": "https://github.com/Spomky-Labs/otphp/contributors"
|
|
|
16 |
}
|
|
|
17 |
],
|
|
|
18 |
"require": {
|
| 1441 |
ariadna |
19 |
"php": ">=8.1",
|
|
|
20 |
"ext-mbstring": "*",
|
|
|
21 |
"paragonie/constant_time_encoding": "^2.0 || ^3.0",
|
|
|
22 |
"psr/clock": "^1.0",
|
|
|
23 |
"symfony/deprecation-contracts": "^3.2"
|
| 1 |
efrain |
24 |
},
|
|
|
25 |
"require-dev": {
|
| 1441 |
ariadna |
26 |
"ekino/phpstan-banned-code": "^1.0",
|
|
|
27 |
"infection/infection": "^0.26|^0.27|^0.28|^0.29",
|
|
|
28 |
"php-parallel-lint/php-parallel-lint": "^1.3",
|
|
|
29 |
"phpstan/phpstan": "^1.0",
|
|
|
30 |
"phpstan/phpstan-deprecation-rules": "^1.0",
|
|
|
31 |
"phpstan/phpstan-phpunit": "^1.0",
|
|
|
32 |
"phpstan/phpstan-strict-rules": "^1.0",
|
|
|
33 |
"phpunit/phpunit": "^9.5.26|^10.0|^11.0",
|
|
|
34 |
"qossmic/deptrac-shim": "^1.0",
|
|
|
35 |
"rector/rector": "^1.0",
|
|
|
36 |
"symfony/phpunit-bridge": "^6.1|^7.0",
|
|
|
37 |
"symplify/easy-coding-standard": "^12.0"
|
| 1 |
efrain |
38 |
},
|
|
|
39 |
"autoload": {
|
|
|
40 |
"psr-4": { "OTPHP\\": "src/" }
|
|
|
41 |
},
|
|
|
42 |
"autoload-dev": {
|
|
|
43 |
"psr-4": { "OTPHP\\Test\\": "tests/" }
|
|
|
44 |
},
|
| 1441 |
ariadna |
45 |
"config": {
|
|
|
46 |
"allow-plugins": {
|
|
|
47 |
"phpstan/extension-installer": true,
|
|
|
48 |
"infection/extension-installer": true,
|
|
|
49 |
"composer/package-versions-deprecated": true,
|
|
|
50 |
"symfony/flex": true,
|
|
|
51 |
"symfony/runtime": true
|
|
|
52 |
},
|
|
|
53 |
"optimize-autoloader": true,
|
|
|
54 |
"preferred-install": {
|
|
|
55 |
"*": "dist"
|
|
|
56 |
},
|
|
|
57 |
"sort-packages": true
|
| 1 |
efrain |
58 |
}
|
|
|
59 |
}
|