-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
76 lines (76 loc) · 1.99 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": "katsana/swarm",
"description": "WebSocket Communication for Laravel",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "KATSANA Developer",
"email": "developer@katsana.com",
"role": "Developer"
},
{
"name": "Marcel Pociot",
"email": "marcel@beyondco.de",
"homepage": "https://beyondcode.de",
"role": "Developer"
},
{
"name": "Freek Van der Herten",
"email": "freek@spatie.be",
"homepage": "https://spatie.be",
"role": "Developer"
},
{
"name": "Mior Muhammad Zaki",
"email": "crynobone@katsana.com",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Swarm\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Swarm\\Tests\\": "tests/"
}
},
"require": {
"php": ">=7.3",
"ext-json": "*",
"cboden/ratchet": "^0.4.1",
"clue/buzz-react": "^2.5",
"guzzlehttp/psr7": "^1.5",
"illuminate/console": "^6.0 || ^7.0 || ^8.0",
"illuminate/http": "^6.0 || ^7.0 || ^8.0",
"illuminate/routing": "^6.0 || ^7.0 || ^8.0",
"illuminate/support": "^6.0 || ^7.0 || ^8.0",
"laravie/stream": "^1.3",
"league/climate": "^3.5",
"symfony/psr-http-message-bridge": "^1.1|^2.0"
},
"require-dev": {
"mockery/mockery": "^1.3.1",
"orchestra/testbench": "^3.8 || ^4.0 || ^5.0 || ^6.0",
"phpunit/phpunit": "^8.4"
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "0.4-dev"
},
"laravel": {
"providers": [
"Swarm\\SwarmServiceProvider"
],
"aliases": {
"Swarm": "Swarm\\Router"
}
}
},
"minimum-stability": "dev"
}