forked from dancryer/php-docblock-checker
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
39 lines (34 loc) · 1.1 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
{
"name" : "divante-ltd/php-docblock-checker",
"description" : "A simple tool for checking that your PHP classes and methods use docblocks.",
"minimum-stability": "stable",
"type" : "library",
"keywords" : ["php", "phpci", "testing", "docblock", "comment", "checker", "code quality"],
"homepage" : "https://www.phptesting.org/",
"license" : "BSD-2-Clause",
"authors": [
{
"name" : "Dan Cryer",
"email" : "dan.cryer@block8.co.uk",
"homepage": "http://www.block8.co.uk",
"role" : "Developer"
}
],
"support": {
"issues": "https://github.com/Block8/php-docblock-checker/issues",
"source": "https://github.com/Block8/php-docblock-checker"
},
"require": {
"php": ">=5.3.3",
"nikic/php-parser": "3.*",
"symfony/console": "3.*"
},
"require-dev": {
"phpmd/phpmd": "~2.0",
"squizlabs/php_codesniffer": "~1.5",
"phploc/phploc": "~2.0"
},
"bin": [
"phpdoccheck"
]
}