-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
41 lines (41 loc) · 967 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
{
"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",
"report"
],
"minimum-stability": "stable",
"require": {
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^8.0 || ^9.0",
"squizlabs/php_codesniffer": "^3.3.1",
"vimeo/psalm": "^4.3"
},
"autoload": {
"psr-4": {
"Micheh\\PhpCodeSniffer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MichehTest\\PhpCodeSniffer\\": "tests/"
}
},
"config": {
"sort-packages": true
}
}