-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·70 lines (70 loc) · 1.62 KB
/
composer.json
File metadata and controls
executable file
·70 lines (70 loc) · 1.62 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "hyperf-plus/swagger",
"type": "library",
"description": "HPlus Swagger 组件 - 自动生成 API 文档,支持 OpenAPI 3.0 规范",
"keywords": [
"php",
"hyperf",
"hyperf-plus",
"swagger",
"openapi",
"api-doc",
"documentation"
],
"license": "MIT",
"authors": [
{
"name": "毛自豪",
"email": "4213509@qq.com"
}
],
"homepage": "https://github.com/lphkxd/hyperf-plus",
"support": {
"issues": "https://github.com/lphkxd/hyperf-plus/issues",
"source": "https://github.com/lphkxd/hyperf-plus/tree/main/swagger"
},
"require": {
"php": ">=8.1",
"hyperf/framework": "^3.1.0",
"hyperf/di": "^3.1.0",
"hyperf/http-server": "^3.1.0",
"hyperf-plus/route": "*"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"mockery/mockery": "^1.5",
"friendsofphp/php-cs-fixer": "^3.0",
"phpstan/phpstan": "^1.10"
},
"suggest": {
"ext-swoole": "Required for Hyperf framework",
"hyperf-plus/validate": "For automatic validation documentation"
},
"autoload": {
"psr-4": {
"HPlus\\Swagger\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"HPlus\\Swagger\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit --colors=always",
"test-coverage": "phpunit --coverage-html coverage",
"analyse": "phpstan analyse src --level 8",
"cs-fix": "php-cs-fixer fix src"
},
"extra": {
"hyperf": {
"config": "HPlus\\Swagger\\ConfigProvider"
}
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"minimum-stability": "stable",
"prefer-stable": true
}