-
Notifications
You must be signed in to change notification settings - Fork 19
/
composer.json
36 lines (36 loc) · 1.09 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
{
"name": "google/analytics-data",
"description": "Google Analytics Data Client for PHP",
"license": "Apache-2.0",
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Google\\Analytics\\Data\\": "src",
"GPBMetadata\\Google\\Analytics\\Data\\": "metadata"
}
},
"autoload-dev": {
"psr-4": {
"Google\\Analytics\\Data\\Tests\\": "tests"
}
},
"extra": {
"component": {
"id": "analytics-data",
"path": "AnalyticsData",
"entry": null,
"target": "googleapis/php-analytics-data.git"
}
},
"require": {
"php": "^8.0",
"google/gax": "^1.36.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."
}
}