-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
74 lines (74 loc) · 2.21 KB
/
Copy pathcomposer.json
File metadata and controls
74 lines (74 loc) · 2.21 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
{
"name": "keboola/db-extractor-pgsql",
"license": "MIT",
"type": "project",
"description": "Brings data from Postgres databases into Keboola",
"authors": [
{
"name": "Keboola",
"email": "devel@keboola.com"
}
],
"require": {
"php": "^8.2",
"ext-PDO": "*",
"keboola/csv": "^3.2",
"keboola/db-extractor-adapter": "^1.13",
"keboola/db-extractor-common": "^17.1",
"keboola/db-extractor-config": "^1.14",
"keboola/db-extractor-table-format": "^3.8",
"keboola/php-component": "^10.1",
"keboola/php-datatypes": "^7.2",
"keboola/php-temp": "^2.0",
"symfony/config": "^6.3",
"symfony/process": "^5.4"
},
"require-dev": {
"ext-json": "*",
"keboola/coding-standard": "^15.0",
"keboola/datadir-tests": "^5.6",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^9.0"
},
"autoload": {
"psr-4": {
"Keboola\\DbExtractor\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Keboola\\DbExtractor\\Tests\\": "tests/phpunit",
"Keboola\\DbExtractor\\TraitTests\\": "tests/traits/",
"Keboola\\DbExtractor\\FunctionalTests\\": "tests/functional"
}
},
"scripts": {
"tests-phpunit": "phpunit --testsuite unit",
"tests-datadir": "phpunit --testsuite functional",
"tests-perf": "phpunit --testsuite perf",
"tests": [
"@tests-phpunit",
"@tests-datadir",
"@tests-perf"
],
"phpstan": "phpstan analyse --no-progress --level=max ./src ./tests -c phpstan.neon",
"phpcs": "phpcs -n --ignore=vendor --extensions=php .",
"phpcbf": "phpcbf -n --ignore=vendor --extensions=php .",
"build": [
"@phpcs",
"@phpstan",
"@tests"
],
"ci": [
"@composer validate --no-check-all --strict",
"@build"
]
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"cweagans/composer-patches": true
}
}
}