-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
48 lines (48 loc) · 950 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
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "nelson6e65/phpdoc-vuepress",
"description": "Template for generating your PHP API documentation in a pretty VuePress format.",
"keywords": [
"PHPDoc",
"PHP",
"phpDocumentor",
"Documentation",
"Markdown",
"VuePress"
],
"homepage": "https://github.com/nelson6e65/phpdoc-vuepress",
"license": "MIT",
"authors": [
{
"name": "Nelson Martell",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"NelsonMartell\\VuePress\\": "src"
}
},
"require-dev": {
"phpdocumentor/phpdocumentor": "^2.9.1",
"jms/serializer": "1.7.*"
},
"autoload-dev": {
"psr-4": {
"NelsonMartell\\VuePress\\Demo\\": "demo"
},
"files": [
"demo/constants.php",
"demo/functions.php"
]
},
"scripts": {
"build:api-docs": [
"phpdoc --ansi"
]
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}