-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
29 lines (29 loc) · 990 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
{
"name": "pedrosancao/php-otp",
"description": "PHP implementation of HMAC-based one-time password algorithm according to RFC 4226 and RFC 6238 compatible with Google Authenticator",
"keywords": ["otp", "hotp", "totp", "RFC 4226", "RFC 6238", "Google Authenticator", "one-time password", "two steps authentication"],
"homepage": "https://github.com/pedrosancao/php-otp",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Pedro Sanção",
"homepage": "http://pedrosancao.github.io"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=7.3",
"pedrosancao/php-random-data": "^1.0"
},
"autoload": {
"psr-4": { "PedroSancao\\": "src/" }
},
"require-dev": {
"phpunit/phpunit": "^9.4"
},
"scripts": {
"test": "phpunit --coverage-clover coverage.xml",
"test:coverage": "phpunit --coverage-text --coverage-html coverage"
}
}