forked from googleapis/google-cloud-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
80 lines (80 loc) · 2.13 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
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
{
"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",
"bigquery",
"big query",
"datastore",
"stackdriver logging",
"natural language",
"pubsub",
"pub sub",
"speech",
"storage",
"gcs",
"translate",
"translation",
"vision"
],
"homepage": "http://github.com/GoogleCloudPlatform/google-cloud-php",
"license": "Apache-2.0",
"authors": [
{
"name": "Dave Supplee",
"email": "[email protected]"
},
{
"name": "John Pedrie",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.5",
"rize/uri-template": "~0.3",
"google/auth": "^0.11",
"guzzlehttp/guzzle": "^5.3|^6.0",
"guzzlehttp/psr7": "^1.2",
"monolog/monolog": "~1",
"psr/http-message": "1.0.*"
},
"require-dev": {
"phpunit/phpunit": "4.8.*",
"squizlabs/php_codesniffer": "2.*",
"phpdocumentor/reflection": "^3.0",
"symfony/console": "^3.0",
"league/json-guard": "^0.3",
"james-heinrich/getid3": "^1.9",
"erusev/parsedown": "^1.6",
"vierbergenlars/php-semver": "^3.0",
"google/proto-client-php": "^0.6",
"google/gax": "^0.5"
},
"suggest": {
"google/gax": "Required to support gRPC",
"google/proto-client-php": "Required to support gRPC",
"james-heinrich/getid3": "Allows the Google Cloud Speech client to determine sample rate and encoding of audio inputs"
},
"autoload": {
"psr-4": {
"Google\\Cloud\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Google\\Cloud\\Dev\\": "dev/src",
"Google\\Cloud\\Tests\\System\\": "tests/system"
}
},
"scripts": {
"google-cloud": "dev/google-cloud"
}
}