-
Notifications
You must be signed in to change notification settings - Fork 23
/
composer.json
100 lines (100 loc) · 2.78 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
{
"name": "xmo/mine-core",
"description": "mineadmin core package",
"license": "Apache-2.0",
"type": "library",
"keywords": [
"php",
"mineadmin core"
],
"authors": [
{
"name": "xmo",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "zds",
"role": "Developer"
}
],
"require": {
"php": ">=8.1",
"ext-gd": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-openssl": "*",
"ext-pdo": "*",
"ext-pdo_mysql": "*",
"ext-redis": "*",
"ext-swoole": ">=5.0",
"ext-xml": "*",
"doctrine/dbal": "^3.1",
"hyperf/amqp": "^3.1",
"hyperf/async-queue": "^3.1",
"hyperf/cache": "^3.1",
"hyperf/codec": "^3.1",
"hyperf/command": "^3.1",
"hyperf/config": "^3.1",
"hyperf/constants": "^3.1",
"hyperf/crontab": "^3.1",
"hyperf/database": "^3.1",
"hyperf/database-pgsql": "^3.1",
"hyperf/db-connection": "^3.1",
"hyperf/di": "^3.1",
"hyperf/filesystem": "^3.1",
"hyperf/flysystem-oss": "^1.2",
"hyperf/framework": "^3.1",
"hyperf/guzzle": "^3.1",
"hyperf/http-server": "^3.1",
"hyperf/logger": "^3.1",
"hyperf/memory": "^3.1",
"hyperf/migration-generator": "^3.1",
"hyperf/model-cache": "^3.1",
"hyperf/paginator": "^3.1",
"hyperf/pool": "^3.1",
"hyperf/process": "^3.1",
"hyperf/redis": "^3.1",
"hyperf/snowflake": "^3.1",
"hyperf/support": "^3.1",
"hyperf/translation": "^3.1",
"hyperf/validation": "^3.1",
"hyperf/websocket-server": "^3.1",
"overtrue/flysystem-cos": "^5.0",
"overtrue/flysystem-qiniu": "^3.0",
"ramsey/uuid": "^4.7",
"symfony/property-access": "^6.0",
"symfony/serializer": "^6.0",
"tangwei/apidocs": "^3.0",
"yurunsoft/phpmailer-swoole": "^1.0",
"zoujingli/ip2region": "~2.0.0"
},
"suggest": {
"ext-json": "Required to use JSON.",
"ext-openssl": "Required to use HTTPS.",
"ext-pdo": "Required to use MySQL Client.",
"ext-pdo_mysql": "Required to use MySQL Client.",
"ext-redis": "Required to use Redis Client.",
"ext-xlswriter": "Required to use xlswriter."
},
"autoload": {
"psr-4": {
"Mine\\": "src/"
}
},
"autoload-dev": {
"psr-4": {}
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"extra": {
"hyperf": {
"config": "Mine\\ConfigProvider"
}
},
"scripts": {
"cs-fix": "php-cs-fixer fix $1"
}
}