-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 1.1 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
{
"name": "jp3cki/totp",
"description": "RFC 6238 / TOTP: Time-Based One-Time Password Algorithm",
"license": "MIT",
"type": "library",
"keywords": [
"totp",
"otp",
"rfc6238",
"onetime",
"password"
],
"authors": [
{
"name": "AIZAWA Hina",
"email": "[email protected]"
}
],
"require": {
"php": ">= 8.1",
"php-64bit": ">= 8.1",
"ext-hash": "*",
"christian-riesen/base32": "^1.6"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.43",
"jp3cki/coding-standard": "^1.0.0",
"phpstan/phpstan": "^1.11.5",
"phpunit/phpunit": "^10.5.24",
"squizlabs/php_codesniffer": "^3.10.1"
},
"autoload": {
"psr-4": {
"jp3cki\\totp\\": "src"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true
},
"platform": {
"php": "8.1.29"
},
"sort-packages": true
}
}