-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
56 lines (56 loc) · 1.28 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": "brainbits/phpcs-gitlab-report",
"description": "Output your PHP CodeSniffer report as a GitLab Code Quality report",
"type": "library",
"keywords": [
"phpcs",
"php-codesniffer",
"phpcs-report",
"gitlab",
"code quality"
],
"homepage": "https://github.com/brainbits/phpcs-gitlab-report",
"license": "MIT",
"authors": [
{
"name": "Satesh Persaud",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Stephan Wentz",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/brainbits/phpcs-gitlab-report/issues",
"source": "https://github.com/brainbits/phpcs-gitlab-report"
},
"require": {
"php": "^8.1",
"ext-json": "*",
"squizlabs/php_codesniffer": "^3.9"
},
"require-dev": {
"phpunit/phpunit": "^10.5.11",
"brainbits/phpcs-standard": "^7.0.1",
"phpstan/phpstan": "^1.10.59",
"phpstan/phpstan-phpunit": "^1.3.16"
},
"autoload": {
"psr-4": {
"Brainbits\\Phpcs\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Brainbits\\Phpcs\\Tests\\": "tests"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}