forked from WordPress/phpdoc-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
28 lines (28 loc) · 750 Bytes
/
composer.json
File metadata and controls
28 lines (28 loc) · 750 Bytes
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
{
"name" : "rmccue/wp-parser",
"description": "Static code parser for WordPress source.",
"keywords" : ["wordpress"],
"type" : "wordpress-plugin",
"homepage" : "https://github.com/rmccue/WP-Parser",
"license" : "GPL-2.0+",
"authors" : [
{
"name" : "Ryan McCue",
"homepage": "http://ryanmccue.info"
}
],
"support" : {
"issues": "https://github.com/rmccue/WP-Parser/issues",
"source": "https://github.com/rmccue/WP-Parser"
},
"require" : {
"php" : ">=5.3.6",
"composer/installers" : "~1.0",
"phpdocumentor/reflection": "~1.0",
"erusev/parsedown" : "~0.9"
},
"autoload" : {
"classmap": ["lib"],
"files" : ["lib/runner.php", "lib/template.php"]
}
}