forked from stolendata/totp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 1.15 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
{
"name": "texdc/totp",
"description": "Simple TOTP (RFC 6238)",
"type": "library",
"license": "CC-BY-NC-SA-4.0",
"keywords": ["totp", "2fa", "2factor", "mfa", "authenticate"],
"require": {
"php": "^7.1",
"texdc/guard": "@stable"
},
"require-dev": {
"phpunit/phpunit": "@stable",
"satooshi/php-coveralls": "@stable",
"squizlabs/php_codesniffer": "@stable",
"phpmd/phpmd": "@stable",
"phpmetrics/phpmetrics": "@stable"
},
"suggest": {
"chillerlan/php-qrcode": "For generating QR code images"
},
"autoload": {
"psr-4": { "texdc\\totp\\": "src/" }
},
"autoload-dev": {
"psr-4": { "texdc\\totp\\test\\": "test/" }
},
"config": {
"platform": { "php": "7.1" },
"preferred-install": "dist"
},
"scripts": {
"test": "vendor/bin/phpunit",
"style": "vendor/bin/phpcs --standard=PSR2 src/ test/",
"check": "vendor/bin/phpmd src/,test/ text cleancode,codesize,design,naming,unusedcode",
"metrics": "vendor/bin/phpmetrics --report-cli src/"
}
}