forked from googleapis/google-cloud-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 1.19 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
{
"name": "google/cloud-storage",
"description": "Cloud Storage Client for PHP",
"license": "Apache-2.0",
"minimum-stability": "stable",
"require": {
"google/cloud-core": "^1.39",
"google/crc32": "^0.1.0"
},
"require-dev": {
"phpunit/phpunit": "^4.8|^5.0",
"squizlabs/php_codesniffer": "2.*",
"phpdocumentor/reflection": "^3.0",
"erusev/parsedown": "^1.6",
"phpseclib/phpseclib": "^2",
"google/cloud-pubsub": "^1.0"
},
"suggest": {
"phpseclib/phpseclib": "May be used in place of OpenSSL for creating signed Cloud Storage URLs. Please require version ^2.",
"google/cloud-pubsub": "May be used to register a topic to receive bucket notifications."
},
"extra": {
"component": {
"id": "cloud-storage",
"target": "googleapis/google-cloud-php-storage.git",
"path": "Storage",
"entry": "src/StorageClient.php"
}
},
"autoload": {
"psr-4": {
"Google\\Cloud\\Storage\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Google\\Cloud\\Storage\\Tests\\": "tests"
}
}
}