forked from NielsdeBlaauw/php-doc-check
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
82 lines (82 loc) · 2.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"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]"
}
],
"require": {
"nikic/php-parser": "^4",
"wp-cli/php-cli-tools": "^0.11",
"ulrichsg/getopt-php": "^3|^4",
"phpdocumentor/reflection-docblock": "^4.3|^5"
},
"bin": [
"bin/php-doc-check"
],
"scripts":{
"test": [
"composer validate",
"vendor/bin/phpunit",
"vendor/bin/phpcs",
"vendor/bin/phpmd ./ text cleancode,codesize,controversial,design,naming,unusedcode --exclude vendor/",
"vendor/bin/phpstan analyse src --level 7",
"./bin/php-doc-check --exclude vendor/ ./"
]
},
"autoload": {
"psr-4": {
"NdB\\PhpDocCheck\\": "src"
}
},
"replace": {
"ext-tokenizer": "*",
"ext-xmlwriter": "*",
"ext-simplexml": "*",
"ext-dom": "*",
"ext-xml": "*"
},
"minimum-stability": "dev",
"require-dev": {
"squizlabs/php_codesniffer": "^3",
"humbug/box": "^3",
"phpmd/phpmd": "^2",
"phpstan/phpstan": "^1",
"phpunit/phpunit": "^9.5"
},
"repositories": [
{
"type": "package",
"package": {
"name": "paragonie/pharaoh",
"version": "0.6.0",
"source": {
"url": "https://github.com/someonewithpc/pharaoh.git",
"type": "git",
"reference": "master"
}
}
},
{
"type": "package",
"package": {
"name": "ulrichsg/getopt-php",
"version": "4.0.0",
"autoload": {
"psr-4": {
"GetOpt\\": "src"
}
},
"source": {
"url": "https://github.com/someonewithpc/getopt-php.git",
"type": "git",
"reference": "master"
}
}
}
]
}