-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathcomposer.json
43 lines (43 loc) · 1.32 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
37
38
39
40
41
42
43
{
"name": "google/cloud-firestore",
"description": "Cloud Firestore Client for PHP",
"license": "Apache-2.0",
"minimum-stability": "stable",
"require": {
"php": "^8.0",
"ext-grpc": "*",
"google/cloud-core": "^1.57",
"google/gax": "^1.36.0",
"ramsey/uuid": "^3.0|^4.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"phpspec/prophecy-phpunit": "^2.0",
"squizlabs/php_codesniffer": "2.*",
"phpdocumentor/reflection": "^5.3.3||^6.0",
"phpdocumentor/reflection-docblock": "^5.3",
"erusev/parsedown": "^1.6"
},
"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-firestore",
"target": "googleapis/google-cloud-php-firestore.git",
"path": "Firestore",
"entry": "src/FirestoreClient.php"
}
},
"autoload": {
"psr-4": {
"Google\\Cloud\\Firestore\\": "src",
"GPBMetadata\\Google\\Firestore\\": "metadata"
}
},
"autoload-dev": {
"psr-4": {
"Google\\Cloud\\Firestore\\Tests\\": "tests"
}
}
}