This repository was archived by the owner on Aug 23, 2023. It is now read-only.
forked from jakubbartel/keboola-xls2csv-processor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (51 loc) · 1.35 KB
/
composer.json
File metadata and controls
51 lines (51 loc) · 1.35 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
{
"name": "keboola/xls2csv-processor",
"type": "project",
"license": "MIT",
"keywords": [
"keboola",
"docker",
"component"
],
"autoload": {
"psr-4": {
"Keboola\\Xls2CsvProcessor\\": "src/Keboola/Xls2CsvProcessor"
}
},
"autoload-dev": {
"psr-4": {
"Keboola\\Xls2CsvProcessor\\Tests\\": "tests/"
}
},
"repositories": [
{
"type": "git",
"url": "https://github.com/jakubbartel/keboola-php-component"
}
],
"require": {
"php": "^7.1",
"keboola/php-component": "dev-master",
"phpoffice/phpspreadsheet": "^1.2",
"keboola/csv": "^1.2"
},
"require-dev": {
"jakub-onderka/php-parallel-lint": "^0.9.2",
"phpstan/phpstan-shim": "^0.9.2",
"phpunit/phpunit": "^6.5",
"slevomat/coding-standard": "~4.0",
"squizlabs/php_codesniffer": "~3.2",
"mikey179/vfsStream": "^1.6"
},
"scripts": {
"tests": "phpunit",
"phpstan": "phpstan analyse ./src ./tests --level=max --no-progress -c phpstan.neon",
"phpcs": "phpcs -n --ignore=vendor --extensions=php .",
"phplint": "parallel-lint -j 10 --exclude vendor .",
"ci": [
"@phplint",
"@phpstan",
"@tests"
]
}
}