-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
73 lines (73 loc) · 2.25 KB
/
composer.json
File metadata and controls
73 lines (73 loc) · 2.25 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
{
"name": "keboola/table-backend-utils",
"authors": [
{
"name": "Keboola",
"email": "devel@keboola.com"
}
],
"description": "Package allows to import files to Snowflake from multiple cloud storages",
"license": "MIT",
"require": {
"php": "^8.3",
"ext-json": "*",
"ext-odbc": "*",
"ext-pdo": "*",
"doctrine/dbal": "^3.3",
"google/cloud-bigquery": "^1.23",
"keboola/common-exceptions": "^1",
"keboola/php-datatypes": ">=8",
"keboola/php-utils": "^4.1",
"keboola/retry": "^0.5.0"
},
"require-dev": {
"keboola/coding-standard": "^16",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpstan/phpstan": "^2",
"phpstan/phpstan-phpunit": "^2",
"phpunit/phpunit": "^12"
},
"autoload": {
"psr-4": {
"Keboola\\TableBackendUtils\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Keboola\\TableBackendUtils\\": "tests"
}
},
"scripts": {
"tests-unit": "phpunit --colors=always --testsuite unit",
"tests-snowflake": "phpunit --colors=always --testsuite Snowflake",
"tests-bigquery": "phpunit --colors=always --testsuite Bigquery",
"tests-functional": [
"@tests-snowflake",
"@tests-bigquery"
],
"tests": [
"@tests-unit",
"@tests-functional"
],
"phpstan": "phpstan analyse ./src ./tests --level=max --no-progress -c phpstan.neon",
"phpcs": "phpcs -n --ignore=vendor --extensions=php .",
"phpcs-report": "phpcs -n --report=source -s --ignore=vendor --extensions=php .",
"phpcbf": "phpcbf -n --ignore=vendor --extensions=php .",
"phplint": "parallel-lint -j 10 --exclude vendor .",
"check": [
"@composer validate --no-check-publish --no-check-all",
"@phplint",
"@phpcs",
"@phpstan",
"@tests-unit"
]
},
"config": {
"sort-packages": true,
"optimize-autoloader": true,
"lock": false,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}