-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
42 lines (42 loc) · 996 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": "micheh/phpcs-gitlab",
"description": "GitLab Report for PHP_CodeSniffer (display the violations in the GitLab CI/CD Code Quality Report)",
"type": "library",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Michel Hunziker",
"email": "[email protected]"
}
],
"keywords": [
"phpcs",
"php_codesniffer",
"gitlab",
"code quality",
"code climate",
"report"
],
"minimum-stability": "stable",
"require": {
"ext-json": "*"
},
"require-dev": {
"phpstan/phpstan": "^2.0",
"phpunit/phpunit": "^9.3 || ^10.0",
"squizlabs/php_codesniffer": "^3.5.0"
},
"autoload": {
"psr-4": {
"Micheh\\PhpCodeSniffer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MichehTest\\PhpCodeSniffer\\": "tests/"
}
},
"config": {
"sort-packages": true
}
}