-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
44 lines (44 loc) · 1.2 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
{
"name": "niels-de-blaauw/php-doc-check",
"description": "Command line tool that identifies code that needs documentation.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Niels de Blaauw",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"nikic/php-parser": "^4.2",
"wp-cli/php-cli-tools": "^0.11.11",
"ulrichsg/getopt-php": "^4.0",
"phpdocumentor/reflection-docblock": "^4.3|^5.0"
},
"bin": [
"bin/php-doc-check"
],
"scripts":{
"test": [
"composer validate",
"phpunit",
"phpcs",
"phpmd ./ text cleancode,codesize,controversial,design,naming,unusedcode --exclude vendor/",
"phpstan analyse src --level 7",
"./bin/php-doc-check --exclude vendor/ ./"
]
},
"autoload": {
"psr-4": {
"NdB\\PhpDocCheck\\": "src"
}
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.4",
"humbug/box": "^4.6",
"phpmd/phpmd": "^2.6",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^10.5"
}
}