-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
92 lines (92 loc) · 2.03 KB
/
composer.json
File metadata and controls
92 lines (92 loc) · 2.03 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
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "detain/datacentered",
"description": "Service providing Asynchronous communication and updates to the host servers vps related stuff.",
"type": "project",
"keywords": [
"server",
"administration",
"vps"
],
"minimum-stability": "dev",
"license": "LGPL-2.1-or-later",
"authors": [
{
"name": "Joe Huss",
"email": "detain@interserver.net"
}
],
"require": {
"php": ">=8.2",
"ext-curl": "*",
"corneltek/cliframework": "*",
"clue/soap-react": "*",
"roave/security-advisories": "*",
"react/child-process": "*@stable",
"react/event-loop": "*@stable",
"react/http": "*@stable",
"react/mysql": "*@stable",
"guzzlehttp/guzzle": ">=6.0@stable",
"danielstjules/php-pretty-datetime": "*",
"influxdata/influxdb-client-php": "*",
"cache/memcached-adapter": "*",
"workerman/channel": "*",
"workerman/gatewayclient": "*",
"workerman/gateway-worker" : "*",
"workerman/globaldata": "*",
"workerman/global-timer": "*",
"workerman/mysql": "*",
"workerman/workerman": "*@stable",
"workerman/statistics": "*"
},
"require-dev": {
"react/promise": "*",
"phpunit/phpunit": "*",
"vlucas/phpdotenv": "*",
"satooshi/php-coveralls": "*",
"codacy/coverage": "dev-master"
},
"suggest": {
"codeclimate/php-test-reporter": "dev-master",
"ext-event": "*",
"ext-ev": "*"
},
"config": {
"minimum-stability": "dev",
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true
}
},
"repositories": [
{
"type": "package",
"package": {
"name": "workerman/global-timer",
"version": "master",
"source": {
"url": "https://github.com/walkor/global-timer.git",
"type": "git",
"reference": "master"
}
}
},
{
"type": "package",
"package": {
"name": "workerman/statistics",
"version": "master",
"source": {
"url": "https://github.com/detain/workerman-statistics.git",
"type": "git",
"reference": "master"
}
}
}
],
"autoload": {
"psr-4": {
"MyAdmin\\VpsHost\\": "src/"
}
}
}