This repository has been archived by the owner on Apr 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
67 lines (67 loc) · 1.81 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "spiral/roadrunner-broadcast",
"type": "library",
"description": "RoadRunner broadcast plugin bridge",
"license": "MIT",
"authors": [
{
"name": "Wolfy-J",
"email": "[email protected]"
},
{
"name": "Kirill Nesmeyanov (SerafimArts)",
"email": "[email protected]"
},
{
"name": "RoadRunner Community",
"homepage": "https://github.com/spiral/roadrunner/graphs/contributors"
}
],
"require": {
"php": ">=7.4",
"ext-json": "*",
"symfony/polyfill-php80": "^1.23",
"spiral/roadrunner": "^2.0",
"spiral/goridge": "^3.1",
"google/protobuf": "^3.7"
},
"autoload": {
"psr-4": {
"Spiral\\RoadRunner\\Broadcast\\": ["src", "generated/Spiral/RoadRunner/Broadcast"],
"GPBMetadata\\": "generated/GPBMetadata"
}
},
"require-dev": {
"phpunit/phpunit": "^8.0",
"spiral/code-style": "^1.0",
"vimeo/psalm": ">=4.4",
"symfony/var-dumper": "^5.1",
"roave/security-advisories": "dev-master"
},
"autoload-dev": {
"psr-4": {
"Spiral\\RoadRunner\\Broadcast\\Tests\\": "tests"
}
},
"scripts": {
"build": [
"protoc --proto_path=resources/proto/v1 --php_out=generated resources/proto/v1/broadcast.proto"
],
"tests": "phpunit",
"cs-fix": "spiral-cs fix src tests",
"analyze": [
"psalm --no-cache",
"spiral-cs check src tests"
]
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}