-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.23 KB
/
composer.json
File metadata and controls
49 lines (49 loc) · 1.23 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
{
"name": "anycable/laravel-broadcaster",
"description": "AnyCable broadcaster for Laravel",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Vladimir Dementyev",
"email": "dementiev.vm@gmail.com"
}
],
"require": {
"php": "^8.0",
"laravel/framework": "^11.0|^12.0",
"guzzlehttp/guzzle": "^7.0"
},
"require-dev": {
"phpunit/phpunit": "^11.0",
"orchestra/testbench": "^9.0|^10.3",
"mockery/mockery": "^1.4",
"squizlabs/php_codesniffer": "^3.7",
"laravel/pint": "^1.13"
},
"scripts": {
"test": "phpunit",
"test-coverage": "phpunit --coverage-html coverage",
"lint": "vendor/bin/pint --test",
"lint:fix": "vendor/bin/pint"
},
"autoload": {
"psr-4": {
"AnyCable\\Laravel\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"AnyCable\\Laravel\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"AnyCable\\Laravel\\Providers\\AnyCableBroadcastServiceProvider"
]
}
},
"minimum-stability": "stable",
"prefer-stable": true
}