forked from googleapis/google-cloud-php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
133 lines (133 loc) · 4.1 KB
/
composer.json
File metadata and controls
133 lines (133 loc) · 4.1 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "google/cloud",
"type": "library",
"description": "Google Cloud Client Library",
"keywords": [
"google apis client",
"google api client",
"google apis",
"google api",
"google",
"google cloud platform",
"google cloud",
"cloud",
"bigtable",
"bigquery",
"big query",
"datastore",
"stackdriver logging",
"language",
"natural language",
"pubsub",
"pub sub",
"spanner",
"speech",
"storage",
"gcs",
"translate",
"translation",
"vision"
],
"homepage": "http://github.com/GoogleCloudPlatform/google-cloud-php",
"license": "Apache-2.0",
"authors": [
{
"name": "Dave Supplee",
"email": "dwsupplee@gmail.com"
},
{
"name": "John Pedrie",
"email": "john@pedrie.com"
}
],
"require": {
"php": ">=5.5",
"rize/uri-template": "~0.3",
"guzzlehttp/guzzle": "^5.3|^6.0",
"guzzlehttp/psr7": "^1.2",
"monolog/monolog": "~1",
"psr/http-message": "1.0.*",
"ramsey/uuid": "~3",
"google/gax": "^0.30",
"google/proto-client": "^0.34"
},
"require-dev": {
"phpunit/phpunit": "^4.8|^5.0",
"squizlabs/php_codesniffer": "2.*",
"phpdocumentor/reflection": "^3.0",
"symfony/console": "^3.0",
"league/json-guard": "^0.3",
"erusev/parsedown": "^1.6",
"vierbergenlars/php-semver": "^3.0",
"symfony/lock": "3.3.x-dev#1ba6ac9",
"phpseclib/phpseclib": "^2",
"google/cloud-tools": "^0.6",
"opis/closure": "^3.0"
},
"replace": {
"google/cloud-bigquery": "1.0.3",
"google/cloud-bigtable": "0.2.3",
"google/cloud-container": "0.2.3",
"google/cloud-core": "1.18.0",
"google/cloud-dataproc": "0.2.3",
"google/cloud-datastore": "1.3.1",
"google/cloud-dlp": "0.6.0",
"google/cloud-error-reporting": "0.8.4",
"google/cloud-firestore": "0.5.2",
"google/cloud-language": "0.12.3",
"google/cloud-logging": "1.9.4",
"google/cloud-monitoring": "0.8.3",
"google/cloud-oslogin": "0.2.3",
"google/cloud-pubsub": "1.0.2",
"google/cloud-spanner": "1.2.1",
"google/cloud-speech": "0.11.3",
"google/cloud-storage": "1.3.4",
"google/cloud-trace": "0.6.3",
"google/cloud-translate": "1.1.2",
"google/cloud-videointelligence": "0.9.3",
"google/cloud-vision": "0.10.2",
"google/cloud-debugger": "0.5.0"
},
"suggest": {
"opis/closure": "May be used to serialize closures to process jobs in the batch daemon. Please require version ^3.",
"phpseclib/phpseclib": "May be used in place of OpenSSL for creating signed Cloud Storage URLs. Please require version ^2.",
"google/cloud-bigquerydatatransfer": "Client library for the BigQuery Data Transfer API."
},
"autoload": {
"psr-4": {
"Google\\Cloud\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Google\\Cloud\\Dev\\": "dev/src",
"Google\\Cloud\\Tests\\": "tests",
"Google\\Cloud\\Tests\\Common\\": "tests/common",
"Google\\Cloud\\Tests\\Perf\\": "tests/perf",
"Google\\Cloud\\Tests\\Snippets\\": "tests/snippets",
"Google\\Cloud\\Tests\\System\\": "tests/system",
"Google\\Cloud\\Tests\\Unit\\": "tests/unit"
},
"classmap": [
"tests/conformance-fixtures"
]
},
"scripts": {
"google-cloud": "dev/google-cloud"
},
"bin": [
"src/Core/bin/google-cloud-batch",
"src/Debugger/bin/google-cloud-debugger"
],
"extra": {
"component": {
"id": "google-cloud",
"target": "git@github.com:GoogleCloudPlatform/google-cloud-php.git",
"path": "src",
"entry": [
"Version.php",
"ServiceBuilder.php"
]
}
}
}