forked from OpenConext/Monitor-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
55 lines (55 loc) · 1.63 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
{
"name": "openconext/monitor-bundle",
"type": "symfony-bundle",
"description": "A Symfony 5/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",
"symfony/dependency-injection": "^5.4|^6.3|^7.0",
"symfony/framework-bundle": "^5.4|^6.3|^7.0",
"doctrine/orm": "^2.9",
"webmozart/assert": "^1.10"
},
"require-dev": {
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpmd/phpmd": "^2.6",
"matthiasnoback/symfony-config-test": "^4.3",
"phpdocumentor/reflection-docblock": "^5.2",
"phpunit/php-token-stream": "^3.1.3|^4.0.4",
"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\\": "src/Tests/"
}
},
"scripts": {
"tests": {
"docheader": "vendor/bin/docheader check src/",
"phpcmd": "vendor/bin/phpmd src text phpmd.xml",
"phpcs": "vendor/bin/phpcs src --report=full --standard=phpcs.xml --extensions=php --warning-severity=0",
"phpcpd": "vendor/bin/phpcpd src --exclude=src/Tests/*",
"phpunit": "vendor/bin/phpunit --coverage-text"
},
"post-update-cmd": [
"@tests"
]
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
}
}