-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
111 lines (111 loc) · 2.85 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
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "wlfpanda1012/shabao-admin",
"type": "project",
"keywords": [
"php",
"swoole",
"framework",
"hyperf",
"microservice",
"middleware"
],
"description": "通用型框架",
"license": "MIT",
"require": {
"php": ">=8.1",
"ext-gd": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-openssl": "*",
"ext-pdo": "*",
"ext-pdo_mysql": "*",
"ext-redis": "*",
"ext-swoole": ">=5.0",
"ext-xlswriter": "*",
"ext-xml": "*",
"hyperf/amqp": "^3.1",
"hyperf/async-queue": "^3.1",
"hyperf/cache": "3.1.*",
"hyperf/command": "3.1.*",
"hyperf/config": "3.1.*",
"hyperf/constants": "3.1.*",
"hyperf/context": "3.1.*",
"hyperf/contract": "3.1.*",
"hyperf/coroutine": "3.1.*",
"hyperf/database": "3.1.*",
"hyperf/db-connection": "3.1.*",
"hyperf/di": "3.1.*",
"hyperf/dispatcher": "3.1.*",
"hyperf/engine": "^2.0",
"hyperf/event": "3.1.*",
"hyperf/exception-handler": "3.1.*",
"hyperf/filesystem": "^3.1",
"hyperf/flysystem-oss": "1.4.*",
"hyperf/framework": "3.1.*",
"hyperf/guzzle": "3.1.*",
"hyperf/http-server": "3.1.*",
"hyperf/logger": "3.1.*",
"hyperf/model-cache": "3.1.*",
"hyperf/polyfill-coroutine": "3.1.*",
"hyperf/pool": "3.1.*",
"hyperf/process": "3.1.*",
"hyperf/redis": "3.1.*",
"hyperf/resource": "3.1.*",
"hyperf/server": "3.1.*",
"hyperf/snowflake": "^3.1",
"hyperf/swagger": "3.1.*",
"hyperf/utils": "3.1.*",
"hyperf/validation": "3.1.*",
"hyperf/websocket-server": "^3.1",
"limingxinleo/hyperf-utils": "^3.9",
"phpoffice/phpspreadsheet": "^1.24",
"ramsey/uuid": "^4.7",
"wlfpanda1012/aliyun-sts": "*",
"xmo/jwt-auth": "^2.0",
"zoujingli/ip2region": "^2.0",
"ext-bcmath": "*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"hyperf/devtool": "3.1.*",
"hyperf/testing": "3.1.*",
"hyperf/watcher": "^3.1",
"mockery/mockery": "^1.0",
"phpstan/phpstan": "^1.0",
"swoole/ide-helper": "dev-master"
},
"autoload": {
"psr-4": {
"App\\": "app/"
},
"files": [
"app/Kernel/Functions.php",
"app/Helper/Functions.php"
]
},
"autoload-dev": {
"psr-4": {
"HyperfTest\\": "test/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"extra": [],
"scripts": {
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-autoload-dump": [
"rm -rf runtime/container"
],
"analyse": "phpstan analyse --memory-limit 512M",
"cs-fix": "php-cs-fixer fix $1",
"start": "php ./bin/hyperf.php start",
"test": "co-phpunit --prepend test/bootstrap.php --colors=always",
"rector": "rector process --clear-cache"
}
}