-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
32 lines (32 loc) · 886 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
{
"name": "sirbrillig/phpcs-import-detection",
"description": "A set of phpcs sniffs to look for unused or unimported symbols.",
"type": "phpcodesniffer-standard",
"keywords" : [ "phpcs", "static analysis" ],
"license": "MIT",
"authors": [
{
"name": "Payton Swick",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"ImportDetection\\": "ImportDetection/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"test": "./vendor/bin/phpunit"
},
"require" : {
"php": "^7.0 || ^8.0",
"squizlabs/php_codesniffer": "^3.5.8"
},
"require-dev": {
"sirbrillig/phpcs-variable-analysis": "^2.0.1",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1",
"phpunit/phpunit": "^9.0"
}
}