-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 987 Bytes
/
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
{
"name": "landingi/crap-metric-analyzer",
"description": "Code Quality tools for CI and developing purposes",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Miłosz Lenczewski",
"email": "[email protected]"
}
],
"bin": [
"bin/cqt"
],
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"Landingi\\QualityTools\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Landingi\\QualityTools\\Tests\\": "tests"
}
},
"minimum-stability": "stable",
"require": {
"php": ">=7.4",
"ext-simplexml": "*",
"symfony/console": "^4.4|5.*"
},
"require-dev": {
"landingi/php-coding-standards": "^1.0",
"phpunit/phpunit": "9.2",
"roave/security-advisories": "dev-master"
}
}