forked from WordPress/phpdoc-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
52 lines (52 loc) · 1.54 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
{
"name" : "wordpress/phpdoc-parser",
"description": "Static code parser for WordPress source.",
"keywords" : ["wordpress"],
"type" : "wordpress-plugin",
"homepage" : "https://github.com/WordPress/phpdoc-parser",
"license" : "GPL-2.0-or-later",
"authors" : [
{
"name" : "Ryan McCue",
"homepage": "http://ryanmccue.info",
"role" : "Developer"
},
{
"name" : "Contributors",
"homepage": "https://github.com/WordPress/phpdoc-parser/graphs/contributors"
}
],
"support" : {
"issues": "https://github.com/WordPress/phpdoc-parser/issues"
},
"require" : {
"php" : ">=5.4",
"composer/installers" : "~1.0",
"phpdocumentor/reflection" : "~3.0",
"erusev/parsedown" : "~1.7",
"scribu/lib-posts-to-posts": "dev-master@dev",
"scribu/scb-framework" : "dev-master@dev",
"psr/log" : "~1.0"
},
"require-dev" : {
"phpunit/phpunit": "^7",
"spatie/phpunit-watcher": "^1.23",
"yoast/phpunit-polyfills": "^1.0"
},
"scripts" : {
"test": "phpunit",
"test:watch": "phpunit-watcher watch < /dev/tty",
"test:coverage": "php -d xdebug.mode=coverage ./vendor/bin/phpunit --coverage-html coverage"
},
"autoload" : {
"classmap": ["lib"],
"files" : ["lib/runner.php", "lib/template.php"]
},
"config": {
"allow-plugins": {
"composer/installers": true
},
"_process-timeout-comment": "Work around `test:watch` timeout, see https://github.com/spatie/phpunit-watcher/issues/63#issuecomment-545633709",
"process-timeout": 0
}
}