forked from googleapis/google-cloud-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (50 loc) · 1.06 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
{
"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"
],
"homepage": "http://github.com/GoogleCloudPlatform/gcloud-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.7",
"guzzlehttp/guzzle": "~5.2|~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/phpdocumentor": "2.8.*",
"satooshi/php-coveralls": "~1.0"
},
"autoload": {
"psr-4": {
"Google\\Cloud\\": "src"
}
},
"scripts": {
"docs": "php scripts/docs.php"
}
}