-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathcomposer.json
More file actions
66 lines (66 loc) · 2.16 KB
/
composer.json
File metadata and controls
66 lines (66 loc) · 2.16 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "google/cloud-spanner",
"description": "Cloud Spanner Client for PHP",
"license": "Apache-2.0",
"minimum-stability": "stable",
"require": {
"php": "^8.1",
"ext-grpc": "*",
"google/cloud-core": "^1.68",
"google/gax": "^1.40.0"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"phpspec/prophecy-phpunit": "^2.1",
"squizlabs/php_codesniffer": "3.*",
"phpdocumentor/reflection": "^5.3.3||^6.0",
"phpdocumentor/reflection-docblock": "^5.3.3||^6.0",
"erusev/parsedown": "^1.6",
"google/cloud-pubsub": "^2.0",
"dg/bypass-finals": "^1.7",
"dms/phpunit-arraysubset-asserts": "^0.5.0",
"symfony/process": "^6.4"
},
"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.",
"brick/math": "Perform arithmetic on NUMERIC values."
},
"extra": {
"component": {
"id": "cloud-spanner",
"target": "googleapis/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",
"Testing\\Data\\": "tests/data/generated/Testing/Data",
"GPBMetadata\\Data\\": "tests/data/generated/GPBMetadata/Data"
}
},
"scripts": {
"test-unit": [
"vendor/bin/phpunit --testdox --stop-on-failure"
],
"test-snippets": [
"vendor/bin/phpunit -c phpunit-snippets.xml.dist --testdox --stop-on-failure"
],
"test-system": [
"Composer\\Config::disableProcessTimeout",
"vendor/bin/phpunit -c phpunit-system.xml.dist --testdox --stop-on-failure"
],
"test-all": [
"@test-unit",
"@test-snippets",
"@test-system"
]
}
}