forked from clean/phpdoc-md
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
35 lines (35 loc) · 828 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
35
{
"name": "clean/phpdoc-md",
"description": "Parse PHP classes and writes documentation to markdown files",
"keywords": ["phpdoc", "markdown"],
"type": "library",
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable" : true,
"require": {
"php": "^5.6|^7|^8",
"phpdocumentor/reflection-docblock": "^3|^4|^5",
"clean/view": "^0.1",
"clean/phpatlas": "^0.2"
},
"require-dev": {
"phpunit/phpunit": ">5",
"clean/mpr": "^1"
},
"autoload": {
"psr-4": {
"Clean\\PhpDocMd\\": "src/"
},
"files": [
"src/snippets.php"
]
},
"autoload-dev": {
"psr-4": {
"Clean\\PhpDocMd\\Example\\": "example/"
}
},
"bin": [
"bin/phpdoc-md"
]
}