-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcomposer.json
50 lines (50 loc) · 1.36 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
{
"name": "laracomponents/centrifuge-broadcaster",
"type": "library",
"description": "Centrifuge broadcaster for laravel >= 5.3",
"keywords": ["laravel", "centrifuge", "centrifugo", "broadcaster"],
"license": "MIT",
"authors": [
{
"name": "Nikita Stenin",
"email": "[email protected]"
}
],
"homepage": "https://github.com/LaraComponents/centrifuge-broadcaster",
"support": {
"issues": "https://github.com/LaraComponents/centrifuge-broadcaster/issues",
"source": "https://github.com/LaraComponents/centrifuge-broadcaster"
},
"require": {
"php": ">=5.6.4",
"guzzlehttp/guzzle": "^6.2",
"predis/predis": "^1.1",
"illuminate/broadcasting": "^5.3"
},
"require-dev": {
"orchestra/testbench": "^3.3",
"phpunit/phpunit": "^5.7|^6.1"
},
"autoload": {
"psr-4": {
"LaraComponents\\Centrifuge\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"LaraComponents\\Centrifuge\\Test\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"LaraComponents\\Centrifuge\\CentrifugeServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}