-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathcomposer.json
More file actions
55 lines (55 loc) · 1.57 KB
/
composer.json
File metadata and controls
55 lines (55 loc) · 1.57 KB
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
48
49
50
51
52
53
54
55
{
"name": "dochne/google-authenticator",
"description": "Code to authenticate against the Google Authenticator app",
"license": "MIT",
"version": "3.0.0",
"authors": [
{
"name": "Doug Nelson",
"email": "dougnelson@silktide.com"
},
{
"name": "Xakki",
"email": "git@xakki.ru"
}
],
"require": {
"php": ">=8.2",
"christian-riesen/base32": "^1.6",
"psr/cache": "^3.0",
"psr/simple-cache": "^3.0",
"paragonie/random_compat": "^9.99"
},
"require-dev": {
"phpunit/phpunit": "^11",
"endroid/qr-code": "^6.0",
"phpstan/phpstan": "^2.1",
"symfony/cache": "^7.2",
"squizlabs/php_codesniffer": "*",
"opsway/psr12-strict-coding-standard": "*"
},
"suggests": {
"endroid/qr-code": "Allows use of EndroidQrImageGenerator to generate the QR code images"
},
"autoload": {
"psr-4": {
"Dolondro\\GoogleAuthenticator\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Dolondro\\GoogleAuthenticator\\Tests\\": "tests"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"phpstan": "XDEBUG_MODE=off vendor/bin/phpstan analyse",
"cs-check": "XDEBUG_MODE=off vendor/bin/phpcs",
"cs-fix": "XDEBUG_MODE=off vendor/bin/phpcbf",
"phpunit": "XDEBUG_MODE=off vendor/bin/phpunit -c phpunit.xml --no-coverage"
}
}