-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·75 lines (75 loc) · 2.7 KB
/
composer.json
File metadata and controls
executable file
·75 lines (75 loc) · 2.7 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "keboola/storage-backend",
"authors": [
{
"name": "Keboola",
"email": "devel@keboola.com"
}
],
"require": {
"php": "^8.3",
"doctrine/dbal": "^3.3",
"ext-json": "*",
"ext-odbc": "*",
"ext-pdo": "*",
"google/cloud-bigquery": "^1.23",
"google/cloud-storage": "^1.27",
"keboola/common-exceptions": "^1",
"keboola/csv-options": "^1",
"keboola/php-csv-db-import": "^6",
"keboola/php-file-storage-utils": "^0.2.2",
"keboola/php-temp": "^2.0",
"keboola/php-utils": "^4.1",
"keboola/retry": "^0.5.0",
"microsoft/azure-storage-blob": "^1.4",
"symfony/console": "^5.2|^6",
"symfony/filesystem": "^5.2|^6",
"symfony/process": "^4.4|^5.0|^6.0"
},
"require-dev": {
"flow-php/filesystem": "^0.21.0",
"flow-php/parquet": "^0.21.0",
"flow-php/types": "^0.21.0",
"keboola/coding-standard": "^16",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^2",
"phpstan/phpstan-phpunit": "^2",
"phpstan/phpstan-symfony": "^2",
"phpunit/phpunit": "^12",
"react/async": "^4||^3",
"rector/rector": "^2",
"squizlabs/php_codesniffer": "^3 || ^4",
"symfony/finder": "^5.4",
"symplify/monorepo-builder": "11.1.30.72"
},
"autoload": {
"psr-4": {
"Keboola\\Datatype\\": "packages/php-datatypes/src/",
"Keboola\\Db\\ImportExport\\": "packages/php-db-import-export/src/",
"Keboola\\Provisioning\\": "packages/php-db-import-export/provisioning/./src",
"Keboola\\StorageBackend\\": "src/",
"Keboola\\TableBackendUtils\\": "packages/php-table-backend-utils/src/"
}
},
"autoload-dev": {
"psr-4": {
"Keboola\\DatatypeTest\\": "packages/php-datatypes/tests/",
"Tests\\Keboola\\Db\\ImportExportCommon\\": "packages/php-db-import-export/tests/Common",
"Tests\\Keboola\\Db\\ImportExportFunctional\\": "packages/php-db-import-export/tests/functional/",
"Tests\\Keboola\\Db\\ImportExportUnit\\": "packages/php-db-import-export/tests/unit",
"Tests\\Keboola\\TableBackendUtils\\": "packages/php-table-backend-utils/tests"
}
},
"replace": {
"keboola/db-import-export": "*",
"keboola/php-datatypes": "*",
"keboola/table-backend-utils": "*"
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}