forked from googleapis/google-cloud-php-spanner
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (40 loc) · 1.19 KB
/
composer.json
File metadata and controls
40 lines (40 loc) · 1.19 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
31
32
33
34
35
36
37
38
39
40
{
"name": "google/cloud-spanner",
"description": "Cloud Spanner Client for PHP",
"license": "Apache-2.0",
"minimum-stability": "stable",
"require": {
"ext-grpc": "*",
"google/cloud-core": "^1.14",
"google/gax": "^0.34"
},
"require-dev": {
"phpunit/phpunit": "^4.8|^5.0",
"squizlabs/php_codesniffer": "2.*",
"phpdocumentor/reflection": "^3.0",
"erusev/parsedown": "^1.6",
"google/cloud-pubsub": "^1.0"
},
"suggest": {
"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-spanner",
"target": "GoogleCloudPlatform/google-cloud-php-spanner.git",
"path": "Spanner",
"entry": "src/SpannerClient.php"
}
},
"autoload": {
"psr-4": {
"Google\\Cloud\\Spanner\\": "src",
"GPBMetadata\\Google\\Spanner\\": "metadata"
}
},
"autoload-dev": {
"psr-4": {
"Google\\Cloud\\Spanner\\Tests\\": "tests"
}
}
}