-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathcomposer.json
34 lines (34 loc) · 855 Bytes
/
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
{
"name": "evert/phpdoc-md",
"description" : "PHP documentation generator, with markdown output",
"keywords" : [ "PHP", "Markdown", "PHPDoc" ],
"homepage" : "https://github.com/evert/phpdoc-md",
"license" : "MIT",
"require" : {
"php" : ">=5.3.1",
"twig/twig" : "~1.2|2.0"
},
"require-dev" : {
"phpdocumentor/phpdocumentor" : "~2.8.0",
"sabre/cs" : "~0.0.5"
},
"authors" : [
{
"name" : "Evert Pot",
"email" : "[email protected]",
"homepage" : "http://www.rooftopsolutions.nl/",
"role" : "Developer"
}
],
"autoload" : {
"psr-4" : {
"PHPDocMD\\" : "src/"
}
},
"bin" : [
"bin/phpdocmd"
],
"config" : {
"bin-dir" : "bin"
}
}