-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
72 lines (72 loc) · 1.96 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
{
"name": "keboola/storage-api-client",
"description": "Keboola Storage API PHP Client",
"homepage": "http://keboola.com",
"license": "MIT",
"config": {
"lock": false,
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": false
}
},
"autoload": {
"psr-0": {
"Keboola\\StorageApi": "src/"
},
"files": [
"src/Keboola/StorageApi/createSimpleJobPollDelay.php"
]
},
"autoload-dev": {
"psr-4": {
"Keboola\\Test\\": "tests/",
"Keboola\\UnitTest\\": "tests-unit/"
}
},
"require": {
"php": ">=8.1",
"ext-json": "*",
"aws/aws-sdk-php": "~3.2",
"google/cloud-bigquery-analyticshub": "^0.2.2",
"google/cloud-storage": "^1.27",
"guzzlehttp/guzzle": "~7.0",
"keboola/csv": "^1",
"keboola/php-datatypes": "^7.0",
"microsoft/azure-storage-blob": "^1.5",
"psr/log": "^1.1|^2.0|^3.0",
"symfony/filesystem": "^6.0||^5.0||^4.0",
"symfony/process": "^6.0||^5.0||^4.0"
},
"require-dev": {
"ext-pdo": "*",
"ext-pdo_pgsql": "*",
"ext-curl": "*",
"brianium/paratest": "2.*|6.*",
"keboola/coding-standard": "^15.0",
"keboola/php-csv-db-import": "^6",
"keboola/phpunit-retry-annotations": "^0.5",
"keboola/retry": "^0.5.0",
"keboola/table-backend-utils": "^2.1",
"phpcompatibility/php-compatibility": "*",
"phpstan/phpstan": "^1",
"phpstan/phpstan-phpunit": "^1.0",
"phpunit/phpunit": "^7.0|^8.0|^9.0",
"rector/rector": "^0.12.23",
"squizlabs/php_codesniffer": "^3",
"tomasfejfar/phpstan-phpunit": "^0.1.0"
},
"scripts": {
"phpcs": "phpcs -n .",
"phpcs-compatibility": "phpcs --config-set installed_paths vendor/phpcompatibility/php-compatibility && phpcs --ignore=*vendor/*,*cache/* -n . --standard=PHPCompatibility --runtime-set testVersion 8.1-8.3",
"phpcbf": "phpcbf -n .",
"phpstan": "phpstan analyse --no-progress --level=max . -c phpstan.neon",
"tests": "phpunit --testsuite=unit",
"ci": [
"@phpcs",
"@phpcs-compatibility",
"@phpstan",
"@tests"
]
}
}