-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathcomposer.json
More file actions
31 lines (31 loc) · 737 Bytes
/
composer.json
File metadata and controls
31 lines (31 loc) · 737 Bytes
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
{
"name": "olivertappin/phpcs-diff",
"description": "Detects violations of a defined coding standard based on a git diff.",
"require": {
"php": "^7.3 || ^8.0",
"ext-json": "*",
"ext-gettext": "*",
"squizlabs/php_codesniffer": "^3.5.7",
"league/climate": "^3.4"
},
"require-dev": {
"phpunit/phpunit": "^7.5.20 || ^8.5.21 || ^9.5.10",
"phpunit/php-code-coverage": "^9.2"
},
"autoload": {
"psr-4": {
"PhpcsDiff\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PhpcsDiff\\Tests\\": "tests/"
}
},
"bin": [
"bin/phpcs-diff"
],
"scripts": {
"test": "phpunit"
}
}