-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcomposer.json
46 lines (46 loc) · 1.09 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
{
"name": "wxm/ddoc",
"type": "library",
"description": "基于 laravel 框架, 读取数据库信息生成数据库字典, 通过控制器注释生成API接口文档, 注册 ddoc 路由网页形式呈现",
"keywords": [
"api",
"database",
"doc",
"laravel"
],
"homepage": "https://github.com/qq15725/ddoc",
"license": "MIT",
"authors": [
{
"name": "wxm",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": ">=7.1.3",
"doctrine/dbal": " ~2.3",
"doctrine/annotations": "~1.2",
"phpdocumentor/reflection-docblock": "^4.3"
},
"require-dev": {
"laravel/lumen-framework": "5.7.*"
},
"autoload": {
"psr-4": {
"Wxm\\DDoc\\": "src"
}
},
"extra": {
"laravel": {
"providers": [
"Wxm\\DDoc\\DDocServiceProvider"
]
}
},
"config": {
"allow-plugins": {
"kylekatarnls/update-helper": true
}
}
}