This commit is contained in:
wangjinlei
2022-04-06 18:02:49 +08:00
parent e34f87de36
commit c1885928ff
262 changed files with 18633 additions and 0 deletions

43
vendor/hg/apidoc/composer.json vendored Normal file
View File

@@ -0,0 +1,43 @@
{
"name": "hg/apidoc",
"description": "thinkphp API文档自动生成",
"type": "think-extend",
"keywords": [
"thinkphp",
"swagger",
"apidoc",
"api文档",
"接口文档",
"自动生成",
"注释生成",
"php接口文档"
],
"require": {
"php": ">=7.1.0",
"doctrine/annotations": "^1.6",
"symfony/class-loader": "~3.2.0"
},
"license": "MIT",
"authors": [
{
"name": "hg-code",
"email": "376401263@qq.com"
}
],
"autoload": {
"psr-4": {
"hg\\apidoc\\": "src/"
}
},
"extra": {
"think": {
"services": [
"hg\\apidoc\\Service"
],
"config": {
"apidoc": "src/config.php"
}
}
},
"minimum-stability": "beta"
}