-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
89 lines (89 loc) · 2.6 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "spiral/goridge",
"type": "goridge",
"description": "High-performance PHP-to-Golang RPC bridge",
"license": "MIT",
"authors": [
{
"name": "Anton Titov (wolfy-j)",
"email": "wolfy-j@spiralscout.com"
},
{
"name": "Valery Piashchynski",
"homepage": "https://github.com/rustatian"
},
{
"name": "Aleksei Gagarin (roxblnfk)",
"homepage": "https://github.com/roxblnfk"
},
{
"name": "Pavel Buchnev (butschster)",
"email": "pavel.buchnev@spiralscout.com"
},
{
"name": "Maksim Smakouz (msmakouz)",
"email": "maksim.smakouz@spiralscout.com"
},
{
"name": "RoadRunner Community",
"homepage": "https://github.com/roadrunner-server/roadrunner/graphs/contributors"
}
],
"homepage": "https://spiral.dev/",
"support": {
"docs": "https://docs.roadrunner.dev",
"issues": "https://github.com/roadrunner-server/roadrunner/issues",
"forum": "https://forum.roadrunner.dev/",
"chat": "https://discord.gg/V6EK4he"
},
"require": {
"php": ">=8.1",
"ext-json": "*",
"ext-sockets": "*",
"spiral/roadrunner": "^2023 || ^2024.1"
},
"require-dev": {
"vimeo/psalm": "^5.9",
"google/protobuf": "^3.22",
"rybakit/msgpack": "^0.7",
"phpunit/phpunit": "^10.0",
"jetbrains/phpstorm-attributes": "^1.0",
"infection/infection": "^0.26.1"
},
"autoload": {
"psr-4": {
"Spiral\\Goridge\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Spiral\\Goridge\\Tests\\": "tests/Goridge"
}
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/roadrunner-server"
}
],
"suggest": {
"ext-msgpack": "MessagePack codec support",
"ext-protobuf": "Protobuf codec support",
"rybakit/msgpack": "(^0.7) MessagePack codec support",
"google/protobuf": "(^3.0) Protobuf codec support"
},
"scripts": {
"test": "phpunit --no-coverage --colors=always",
"test-cover": "phpunit --coverage-clover=coverage.xml",
"test-static": "psalm --no-cache",
"test-mutations": "infection"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"infection/extension-installer": true,
"composer/package-versions-deprecated": true
}
}
}