forked from hhxsv5/laravel-s
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
65 lines (65 loc) · 1.46 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
{
"name": "hhxsv5/laravel-s",
"type": "library",
"license": "MIT",
"support": {
"issues": "https://github.com/hhxsv5/laravel-s/issues",
"source": "https://github.com/hhxsv5/laravel-s"
},
"description": "🚀LaravelS is like a glue that is used to quickly integrate Swoole into Laravel or Lumen, and then give them better performance and more possibilities.",
"keywords": [
"laravel-s",
"swoole",
"laravel",
"lumen",
"async",
"coroutine",
"server",
"http",
"websocket",
"tcp",
"udp",
"process",
"task",
"timer",
"inotify",
"performance"
],
"homepage": "https://github.com/hhxsv5/laravel-s",
"authors": [
{
"name": "Xie Biao",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.5.9",
"symfony/console": ">=2.7.0",
"ext-json": "*",
"ext-pcntl": "*",
"swoole/ide-helper": "@dev"
},
"suggest": {
"ext-swoole": "Event-driven asynchronous & concurrent & coroutine networking engine with high performance for PHP, require >= 1.7.19.",
"ext-inotify": "Inotify, used to reload all worker processes when your code is modified."
},
"autoload": {
"psr-4": {
"Hhxsv5\\LaravelS\\": "src"
}
},
"extra": {
"laravel": {
"providers": [
"Hhxsv5\\LaravelS\\Illuminate\\LaravelSServiceProvider"
]
}
},
"bin": [
"bin/fswatch"
],
"prefer-stable": true,
"minimum-stability": "dev",
"require-dev": {
}
}