-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
56 lines (56 loc) · 1.56 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "openconext/monitor-bundle",
"type": "symfony-bundle",
"description": "A Symfony 6/7 bundle that facilitates health and info endpoints to a Symfony application.",
"keywords": ["SURFnet", "StepUp", "OpenConext", "monitoring", "health"],
"license": "Apache-2.0",
"minimum-stability": "stable",
"require": {
"php": ">=8.2, <9.0-dev",
"doctrine/dbal": "^3.1|^4.0",
"endroid/installer": "^1.4",
"symfony/dependency-injection": "^6.3|^7.0",
"symfony/framework-bundle": "^6.3|^7.0",
"webmozart/assert": "^1.10"
},
"require-dev": {
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpmd/phpmd": "^2.13",
"phpunit/phpunit": "^9.6|^10.4",
"sebastian/phpcpd": "^4.1|^5.0|^6.0",
"squizlabs/php_codesniffer": "^3.6",
"malukenho/docheader": "^1.0",
"mockery/mockery": "^1.3.5|^1.4.4"
},
"autoload": {
"psr-4": {
"OpenConext\\MonitorBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"scripts": {
"tests": {
"docheader": "vendor/bin/docheader check src/ tests/",
"phpcs": "vendor/bin/phpcs src tests --report=full --standard=phpcs.xml --extensions=php --warning-severity=0",
"phpcpd": "vendor/bin/phpcpd src",
"phpunit": "vendor/bin/phpunit --coverage-text",
"phpmd": "vendor/bin/phpmd src text phpmd.xml"
},
"post-update-cmd": [
"@tests"
]
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"allow-plugins": {
"endroid/installer": true
}
}
}