forked from LaraComponents/centrifuge-broadcaster
-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
43 lines (43 loc) · 1.13 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
{
"name": "emprove/centrifuge-broadcaster",
"type": "library",
"description": "Centrifuge broadcaster for laravel ^6",
"keywords": ["laravel", "centrifuge", "centrifugo", "broadcaster"],
"license": "MIT",
"authors": [
{
"name": "Emprove",
"email": "[email protected]"
}
],
"homepage": "https://github.com/emprove/centrifuge-broadcaster",
"support": {
"issues": "https://github.com/emprove/centrifuge-broadcaster/issues",
"source": "https://github.com/emprove/centrifuge-broadcaster"
},
"require": {
"php": "^7.2",
"illuminate/broadcasting": "^6.0",
"guzzlehttp/guzzle": "^6.3.3",
"lcobucci/jwt": "3.4.*"
},
"require-dev": {},
"autoload": {
"psr-4": {
"Emprove\\Centrifugo\\": "src/"
}
},
"autoload-dev": {},
"extra": {
"laravel": {
"providers": [
"Emprove\\Centrifugo\\CentrifugoServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}