-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
75 lines (74 loc) · 2.24 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
{
"name": "keboola/ex-mongodb",
"description": "Keboola Extractor for MongoDB",
"license": "MIT",
"require": {
"php": "^8.1",
"ext-intl": "*",
"ext-json": "*",
"ext-mongodb": "*",
"keboola/csv": "^4.0",
"keboola/csvmap": "^2.2",
"keboola/php-component": "^10.1",
"keboola/retry": "^0.5.0",
"keboola/ssh-tunnel": "^2.0",
"league/uri": "^6.2",
"league/uri-components": "^2.2",
"monolog/monolog": "^2.0",
"nette/utils": "^2.5",
"symfony/config": "^5.0",
"symfony/console": "^5.0",
"symfony/filesystem": "^5.0",
"symfony/process": "^5.0",
"symfony/serializer": "^5.0"
},
"require-dev": {
"php-parallel-lint/php-parallel-lint": "^1.3",
"keboola/coding-standard": ">=7.0.2",
"keboola/datadir-tests": "^5.3",
"keboola/php-temp": "^2.0",
"phpstan/phpstan": "^1.4",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"MongoExtractor\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MongoExtractor\\Tests\\": "tests/phpunit/",
"MongoExtractor\\FunctionalTests\\": "tests/functional/",
"MongoExtractor\\Tests\\Traits\\": "tests/traits/"
}
},
"scripts": {
"tests-phpunit": "phpunit",
"tests-datadir": "phpunit tests/functional",
"tests": [
"@tests-phpunit",
"@tests-datadir"
],
"phpstan": "phpstan analyse ./src tests --level=8 --no-progress -c phpstan.neon",
"phpcs": "phpcs -n --ignore=vendor,tests/functional/*/setUp.php --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
}
}
}