-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
executable file
·61 lines (61 loc) · 1.85 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
{
"name": "keboola/ex-generic-v2",
"description": "Generic HTTP API extractor",
"license": "MIT",
"type": "project",
"minimum-stability": "stable",
"require": {
"php": ">=7.4",
"ext-json": "*",
"aws/aws-sdk-php": "^3.208",
"guzzlehttp/oauth-subscriber": "^0.4",
"keboola/filter": "^2.0",
"keboola/juicer": "^5.1",
"keboola/php-csvtable": "^1.2",
"keboola/php-temp": "^2.0",
"keboola/php-utils": "^4.1",
"keboola/retry": "^0.5.0",
"kevinrob/guzzle-cache-middleware": "^3.3",
"league/flysystem": "~1.0",
"symfony/config": "^5.2",
"symfony/console": "^5.2",
"symfony/finder": "^5.2",
"symfony/process": "^5.4",
"symfony/validator": "^5.2"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"keboola/coding-standard": ">=9.0",
"php-parallel-lint/php-parallel-lint": "^1.2",
"phpstan/phpstan": "^0.12"
},
"autoload": {
"psr-4": { "Keboola\\GenericExtractor\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Keboola\\GenericExtractor\\Tests\\": "tests/phpunit" }
},
"scripts": {
"tests-phpunit": "phpunit",
"tests": [
"@tests-phpunit"
],
"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",
"@tests"
],
"ci": [
"@composer validate --no-check-publish --no-check-all",
"@build"
]
},
"config": {
"sort-packages": true,
"optimize-autoloader": true
}
}