-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (53 loc) · 1.4 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
{
"name": "batformat/phpcent-broadcaster",
"type": "library",
"description": "Centrifuge broadcaster for laravel >= 5.3, support Centrifuge v2",
"keywords": ["laravel", "centrifuge", "centrifugo", "broadcaster"],
"license": "MIT",
"authors": [
{
"name": "Maxim Kot",
"email": "bat.format@gmail.com"
},
{
"name": "Nikita Stenin",
"email": "stenin.nikita@gmail.com"
}
],
"homepage": "https://github.com/batFormat/phpcent-broadcaster",
"support": {
"issues": "https://github.com/batFormat/phpcent-broadcaster/issues",
"source": "https://github.com/batFormat/phpcent-broadcaster"
},
"require": {
"php": ">=5.6.4",
"predis/predis": "^1.1",
"illuminate/broadcasting": "^5.3"
},
"require-dev": {
"orchestra/testbench": "^3.3",
"phpunit/phpunit": "^5.7|^6.1"
},
"autoload": {
"psr-4": {
"BatFormat\\Centrifuge\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"BatFormat\\Centrifuge\\Test\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"BatFormat\\Centrifuge\\CentrifugeServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "stable",
"prefer-stable": true
}