-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 1.08 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
{
"name": "google/cloud-bigquery",
"description": "BigQuery Client for PHP",
"license": "Apache-2.0",
"minimum-stability": "stable",
"require": {
"google/cloud-core": "^1.43",
"ramsey/uuid": "^3.0|^4.0",
"divineomega/dotenv-loader": "^2.0",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^4.8|^5.0",
"squizlabs/php_codesniffer": "2.*",
"phpdocumentor/reflection": "^3.0",
"erusev/parsedown": "^1.6",
"google/cloud-storage": "^1.3"
},
"suggest": {
"google/cloud-storage": "Makes it easier to load data from Cloud Storage into BigQuery"
},
"extra": {
"component": {
"displayName": "Google Cloud BigQuery",
"id": "cloud-bigquery",
"target": "googleapis/google-cloud-php-bigquery.git",
"path": "BigQuery",
"entry": "src/BigQueryClient.php"
}
},
"autoload": {
"psr-4": {
"Google\\Cloud\\BigQuery\\": "src"
},
"files": ["construct/QueryConstruct.php"],
"classmap": ["construct"]
},
"autoload-dev": {
"psr-4": {
"Google\\Cloud\\BigQuery\\Tests\\": "tests"
}
}
}