-
Notifications
You must be signed in to change notification settings - Fork 475
/
composer.json
76 lines (76 loc) · 1.52 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
{
"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 an out-of-the-box adapter between Laravel/Lumen and Swoole.",
"keywords": [
"laravels",
"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": ">=8.2",
"ext-curl": "*",
"ext-json": "*",
"ext-pcntl": "*",
"swoole/ide-helper": "@dev",
"symfony/console": ">=6.4.0"
},
"suggest": {
"ext-swoole": "Coroutine-based concurrency library for PHP, require >= 1.7.19.",
"ext-inotify": "Inotify, used to real-time reload."
},
"autoload": {
"psr-4": {
"Hhxsv5\\LaravelS\\": "src"
}
},
"extra": {
"laravel": {
"providers": [
"Hhxsv5\\LaravelS\\Illuminate\\LaravelSServiceProvider"
]
}
},
"bin": [
"bin/fswatch"
],
"prefer-stable": true,
"minimum-stability": "dev",
"require-dev": {
"phpunit/phpunit": ">=4.8.36"
},
"autoload-dev": {
"psr-4": {
"Hhxsv5\\LaravelS\\Tests\\": "tests"
}
},
"scripts": {
"test": "./vendor/bin/phpunit -c phpunit.xml"
}
}