-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1 KB
/
composer.json
File metadata and controls
48 lines (48 loc) · 1 KB
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
{
"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-4": {
"Keboola\\StorageApi\\": "src/Keboola/StorageApi/"
},
"files": [
"src/Keboola/StorageApi/createSimpleJobPollDelay.php"
]
},
"autoload-dev": {
"psr-4": {
"Keboola\\UnitTest\\": "tests/"
}
},
"require": {
"php": ">=8.2",
"ext-json": "*",
"aws/aws-sdk-php": "~3.2",
"google/cloud-storage": "^1.27",
"guzzlehttp/guzzle": "~7.0",
"keboola/csv": "^1",
"microsoft/azure-storage-blob": "^1.5",
"psr/log": "^1.1|^2.0|^3.0",
"symfony/filesystem": "^7.0||^6.0||^5.0||^4.0",
"symfony/process": "^7.0||^6.0||^5.0||^4.0"
},
"require-dev": {
"ext-curl": "*",
"phpunit/phpunit": "^11|^12"
},
"scripts": {
"tests": "phpunit --testsuite=unit",
"ci": [
"@tests"
]
}
}