-
Notifications
You must be signed in to change notification settings - Fork 462
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 1 KB
/
composer.json
File metadata and controls
30 lines (30 loc) · 1 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
{
"name": "google/cloud-developerconnect",
"description": "Google Cloud Developer Connect Client for PHP",
"license": "Apache-2.0",
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Google\\Cloud\\DeveloperConnect\\": "src",
"GPBMetadata\\Google\\Cloud\\Developerconnect\\": "metadata"
}
},
"extra": {
"component": {
"id": "cloud-developerconnect",
"path": "DeveloperConnect",
"target": "googleapis/google-cloud-php-developerconnect"
}
},
"require": {
"php": "^8.1",
"google/gax": "^1.38.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0"
},
"suggest": {
"ext-grpc": "Enables use of gRPC, a universal high-performance RPC framework created by Google.",
"ext-protobuf": "Provides a significant increase in throughput over the pure PHP protobuf implementation. See https://cloud.google.com/php/grpc for installation instructions."
}
}