-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathcomposer.json
More file actions
64 lines (64 loc) · 1.58 KB
/
composer.json
File metadata and controls
64 lines (64 loc) · 1.58 KB
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
{
"name": "denis660/laravel-centrifugo",
"description": "Centrifugo broadcaster for laravel",
"keywords": [
"laravel-broadcaster",
"broadcaster",
"laravel",
"centrifugo",
"web socket",
"web-socket",
"websocket",
"socket",
"real time"
],
"license": "MIT",
"authors": [
{
"name": "Denis Zakharenko",
"email": "amx-serv@ya.ru",
"role": "Creator"
}
],
"homepage": "https://github.com/denis660/laravel-centrifugo",
"support": {
"email": "amx-serv@ya.ru",
"issues": "https://github.com/denis660/laravel-centrifugo/issues",
"source": "https://github.com/denis660/laravel-centrifugo"
},
"require": {
"php": "^8.0",
"ext-json": "*",
"laravel/framework": "^9.0|^10.0|^11.0|^12.0|^13.0",
"guzzlehttp/guzzle": "~6.0|^7.0"
},
"require-dev": {
"orchestra/testbench": "^7.35|^8.14|^9.0|^10.0|^11.0",
"phpunit/phpunit": "^9.3|^10.5|^11.5.3|^12.5.12"
},
"autoload": {
"psr-4": {
"denis660\\Centrifugo\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"denis660\\Centrifugo\\Test\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"denis660\\Centrifugo\\CentrifugoServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"test": "phpunit"
}
}