-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
35 lines (35 loc) · 1.17 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
{
"name": "google/cloud-error-reporting",
"description": "Stackdriver Error Reporting Client for PHP",
"license": "Apache-2.0",
"minimum-stability": "stable",
"require": {
"php": "^8.0",
"google/cloud-logging": "^1.29",
"google/gax": "^1.36.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"phpspec/prophecy-phpunit": "^2.0",
"google/cloud-core": "^1.52.7",
"psr/log": "^2.0||^3.0"
},
"suggest": {
"ext-grpc": "The gRPC extension allows more granular control over Error Reporting",
"ext-protobuf": "Provides a significant increase in throughput over the pure PHP protobuf implementation. See https://cloud.google.com/php/grpc for installation instructions."
},
"extra": {
"component": {
"id": "cloud-error-reporting",
"target": "googleapis/google-cloud-php-errorreporting.git",
"path": "ErrorReporting",
"entry": null
}
},
"autoload": {
"psr-4": {
"Google\\Cloud\\ErrorReporting\\": "src",
"GPBMetadata\\Google\\Devtools\\Clouderrorreporting\\": "metadata"
}
}
}