-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
76 lines (76 loc) · 2.29 KB
/
Copy pathcomposer.json
File metadata and controls
76 lines (76 loc) · 2.29 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "surfnet/yubikey-api-client-bundle",
"description": "A Symfony bundle to integrate Yubikey OTP validation service.",
"keywords": [
"yubikey",
"yubico"
],
"license": "Apache-2.0",
"autoload": {
"psr-4": {
"Surfnet\\YubikeyApiClientBundle\\": "src"
}
},
"require": {
"php": "^8.2",
"surfnet/yubikey-api-client": "^2.3",
"symfony/config": "^6.0|^7.0",
"symfony/dependency-injection": "^6.0|^7.0",
"symfony/http-kernel": "^6.0|^7.0",
"symfony/yaml": "^6.0|^7.0",
"symfony/console": "^6.0|^7.0"
},
"require-dev": {
"phpmd/phpmd": "^2.0",
"phpunit/phpunit": "^11.5.43",
"squizlabs/php_codesniffer": "^4.0",
"matthiasnoback/symfony-config-test": "^6.1",
"symfony/framework-bundle": "^7.3",
"symfony/monolog-bundle": "^3.0",
"slevomat/coding-standard": "^8.24",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-symfony": "^2.0",
"phpstan/phpstan-deprecation-rules": "^2.0",
"overtrue/phplint": "^9.0",
"rector/rector": "^2.2",
"irstea/phpcpd-shim": "*",
"malukenho/docheader": "^1.1"
},
"scripts": {
"check-ci": [
"@composer-validate",
"@license-headers",
"@phplint",
"@phpcpd",
"@phpcs",
"@phpmd",
"@phpstan",
"@test"
],
"check": [
"@check-ci",
"@rector"
],
"phplint": "./ci/qa/phplint",
"composer-validate": "./ci/qa/validate",
"phpcs": "./ci/qa/phpcs",
"phpcpd": "./ci/qa/phpcpd",
"phpcbf": "./ci/qa/phpcbf",
"phpmd": "./ci/qa/phpmd",
"phpstan": "./ci/qa/phpstan",
"phpstan-baseline": "./ci/qa/phpstan-update-baseline",
"test": "./ci/qa/phpunit",
"license-headers": "./ci/qa/docheader",
"rector": "./ci/qa/rector.sh --dry-run",
"rector-fix": "./ci/qa/rector.sh",
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}