-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
59 lines (58 loc) · 1.39 KB
/
composer.json
File metadata and controls
59 lines (58 loc) · 1.39 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
{
"name": "symbiotic/workerman",
"description": "Symbiotic server on Workerman RoadRunner",
"license": "MIT",
"version": "1.4.1.2",
"keywords": [],
"require": {
"php": ">=8.0",
"symbiotic/full": "^1.4",
"symbiotic/console": "^1.4",
"workerman/workerman": "^4.0"
},
"autoload": {
"psr-4": {
"Symbiotic\\Workerman\\": "src/"
}
},
"extra": {
"symbiotic": {
"id": "workerman",
"app": {
"app_class": "Symbiotic\\Workerman\\App"
},
"settings_fields": [
{
"title": "Http server",
"name": "http_server",
"type": "group",
"fields":[
{
"label": "Server host",
"name": "http_server_host",
"type": "text"
},
{
"label": "Server port",
"name": "http_server_port",
"type": "text"
},
{
"label": "Server domain for http requests",
"name": "http_server_alias",
"description": "Used when generating urls",
"type": "text"
}
]
}
],
"settings": {
"http_server_host":"localhost",
"http_server_port":"80",
"http_server_alias":"localhost:80"
},
"commands": {
"worker":"\\Symbiotic\\Workerman\\Commands\\Worker" }
}
}
}