-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
36 lines (36 loc) · 894 Bytes
/
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
{
"name": "ekojs/otp",
"description": "TOTP dan HOTP Library with backup codes, compatible with google authenticator",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Ekojs\\Otp\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ekojs\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Eko Junaidi Salam",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"scripts": {
"test": "phpunit -c phpunit.xml --testdox tests"
},
"require": {
"php": "^8.2",
"spomky-labs/otphp": "^11.3",
"endroid/qr-code": "^6.0",
"furqansiddiqui/bip39-mnemonic-php": "^0.1.7"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"php-coveralls/php-coveralls": "^2.5"
}
}