forked from googleapis/google-cloud-php-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.61 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
44
45
46
47
48
49
50
51
{
"name": "google/cloud-core",
"description": "Google Cloud PHP shared dependency, providing functionality useful to all components.",
"license": "Apache-2.0",
"minimum-stability": "stable",
"require": {
"php": ">=7.4",
"rize/uri-template": "~0.3",
"google/auth": "^1.18",
"guzzlehttp/guzzle": "^6.5.8|^7.4.4",
"guzzlehttp/promises": "^1.4||^2.0",
"guzzlehttp/psr7": "^1.7|^2.0",
"monolog/monolog": "^1.1|^2.0|^3.0",
"psr/http-message": "^1.0|^2.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"phpspec/prophecy-phpunit": "^2.0",
"squizlabs/php_codesniffer": "2.*",
"phpdocumentor/reflection": "^5.0",
"erusev/parsedown": "^1.6",
"google/gax": "^1.24.0",
"opis/closure": "^3",
"google/cloud-common-protos": "^0.4"
},
"suggest": {
"opis/closure": "May be used to serialize closures to process jobs in the batch daemon. Please require version ^3.",
"symfony/lock": "Required for the Spanner cached based session pool. Please require the following commit: 3.3.x-dev#1ba6ac9"
},
"extra": {
"component": {
"id": "cloud-core",
"target": "googleapis/google-cloud-php-core.git",
"path": "Core",
"entry": "src/ServiceBuilder.php"
}
},
"bin": [
"bin/google-cloud-batch"
],
"autoload": {
"psr-4": {
"Google\\Cloud\\Core\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Google\\Cloud\\Core\\Tests\\": "tests"
}
}
}