-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
31 lines (31 loc) · 992 Bytes
/
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
{
"name": "opensergo/opensergo-php",
"description": "PHP SDK for OpenSergo",
"keywords": ["opensergo", "service-governance", "microservices","gRPC", "protobuf"],
"type": "library",
"license": "Apache-2.0",
"authors": [
{
"name": "opensergo-php contributors",
"homepage": "https://github.com/opensergo/opensergo-php/graphs/contributors"
},
{
"name": "opensergo-specification contributors",
"homepage": "https://github.com/opensergo/opensergo-specification/graphs/contributors"
}
],
"require": {
"php": "^7.4 || ^8.0",
"google/protobuf": "^v3.3.0",
"ext-grpc": "*"
},
"autoload": {
"psr-4": {
"Opensergo\\Proto\\": "Opensergo/Proto/",
"GPBMetadata\\Opensergo\\": "GPBMetadata/Opensergo/"
}
},
"suggest": {
"ext-protobuf": "For better performance, when dealing with the protobuf format"
}
}