-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
80 lines (79 loc) · 2.78 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
73
74
75
76
77
78
79
80
{
"name": "keboola/dbt-transformation",
"description": "DBT transformation POC component",
"license": "MIT",
"require": {
"php": "^8.3",
"ext-json": "*",
"ext-odbc": "*",
"google/cloud-bigquery": "^1.28",
"keboola/db-adapter-snowflake": "^1.1",
"keboola/php-component": "^10.1",
"keboola/retry": "^0.5",
"keboola/storage-api-client": "^14.12",
"keboola/table-backend-utils": "^1.11",
"symfony/console": "^7.1",
"symfony/filesystem": "^5.4",
"symfony/process": "^6.4",
"symfony/yaml": "^5.4",
"vlucas/phpdotenv": "^5.4"
},
"require-dev": {
"colinodell/psr-testlogger": "^1.3",
"keboola/coding-standard": ">=7.0.2",
"keboola/datadir-tests": "^5.2",
"keboola/php-temp": "^2.0",
"php-parallel-lint/php-parallel-lint": "^1.2",
"phpstan/phpstan": "^1.8",
"phpunit/phpunit": "^9.0"
},
"autoload": {
"psr-4": {
"DbtTransformation\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DbtTransformation\\Tests\\": "tests/phpunit/",
"DbtTransformation\\FunctionalTests\\": "tests/functional/",
"DbtTransformation\\FunctionalRemoteDwhTests\\": "tests/functionalRemoteDWH/",
"DbtTransformation\\FunctionalSyncActionsTests\\": "tests/functionalSyncActions/",
"DbtTransformation\\FunctionalSyncActionsTestsNoZip\\": "tests/functionalSyncActionsNoZip/"
}
},
"scripts": {
"tests-phpunit": "phpunit",
"tests-datadir": "phpunit tests/functional",
"tests-datadir-remote-dwh": "phpunit tests/functionalRemoteDWH",
"tests-datadir-sync-actions": "phpunit tests/functionalSyncActions",
"tests-datadir-sync-actions-no-zip": "phpunit tests/functionalSyncActionsNoZip",
"tests": [
"@tests-phpunit",
"@tests-datadir",
"@tests-datadir-remote-dwh",
"@tests-datadir-sync-actions",
"@tests-datadir-sync-actions-no-zip"
],
"phpstan": "phpstan analyse ./src ./tests --level=max --no-progress -c phpstan.neon",
"phpcs": "phpcs -n --ignore=vendor --extensions=php .",
"phpcbf": "phpcbf -n --ignore=vendor --extensions=php .",
"phplint": "parallel-lint -j 10 --exclude vendor .",
"build": [
"@phplint",
"@phpcs",
"@phpstan",
"@tests"
],
"ci": [
"@composer validate --no-check-publish --no-check-all",
"@build"
]
},
"config": {
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}