-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
53 lines (53 loc) · 1.27 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": "roadrunner-php/roadrunner-api-dto",
"type": "library",
"description": "RoadRunner PHP API",
"license": "MIT",
"homepage": "https://roadrunner.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"
},
"authors": [
{
"name": "Pavel Butchnev (butschster)",
"email": "[email protected]"
},
{
"name": "Aleksei Gagarin (roxblnfk)",
"email": "[email protected]"
},
{
"name": "RoadRunner Community",
"homepage": "https://github.com/roadrunner-server/roadrunner/graphs/contributors"
}
],
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/roadrunner-server"
}
],
"require": {
"php": "^8.1",
"google/protobuf": "^3.22 || ^4.0"
},
"suggest": {
"google/common-protos": "Required for Temporal API"
},
"conflict": {
"temporal/sdk": "<2.9.0"
},
"scripts": {
"build": "./generate.sh"
},
"autoload": {
"psr-4": {
"RoadRunner\\": "generated/RoadRunner",
"GPBMetadata\\": "generated/GPBMetadata",
"Temporal\\": "generated/Temporal"
}
}
}