-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
80 lines (80 loc) · 2.01 KB
/
Copy pathcomposer.json
File metadata and controls
80 lines (80 loc) · 2.01 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
71
72
73
74
75
76
77
78
79
80
{
"name": "hyperf-plus/route",
"type": "library",
"description": "HPlus 路由增强组件 - 提供强大的路由注解系统,支持自动路由注册和参数验证",
"keywords": [
"php",
"hyperf",
"hyperf-plus",
"route",
"annotation",
"api"
],
"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/route"
},
"require": {
"php": ">=8.1",
"hyperf/config": "^3.1",
"hyperf/di": "^3.1.0",
"hyperf/framework": "^3.1.0",
"hyperf/http-server": "^3.1.0"
},
"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 request validation support",
"hyperf-plus/swagger": "For API documentation generation"
},
"autoload": {
"psr-4": {
"HPlus\\Route\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"HPlus\\Route\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit --colors=always",
"test-unit": "phpunit --colors=always tests/Unit",
"test-feature": "phpunit --colors=always tests/Feature",
"test-coverage": "phpunit --coverage-html coverage --coverage-text",
"test-performance": "phpunit --colors=always --group performance",
"test-docs": "phpunit --testdox",
"test-groups": "phpunit --list-groups",
"analyse": "phpstan analyse src --level 8",
"cs-fix": "php-cs-fixer fix src",
"quality": [
"@test",
"@analyse",
"@cs-fix"
]
},
"extra": {
"hyperf": {
"config": "HPlus\\Route\\ConfigProvider"
}
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"minimum-stability": "stable",
"prefer-stable": true
}