-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
executable file
·50 lines (50 loc) · 1.14 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
{
"name": "keboola/php-csvtable",
"description": "CSV file class with Keboola StorageApi extensions",
"license": "MIT",
"keywords": ["csv", "table", "storageapi"],
"authors": [
{
"name": "Ondrej Vana",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"keboola/php-temp": "^2.0",
"keboola/csv": "^4.0"
},
"require-dev": {
"keboola/coding-standard": "^13.0",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpstan/phpstan": "^1.4",
"phpunit/phpunit": ">=7.5"
},
"scripts": {
"phpstan": "phpstan analyse ./src ./tests --level=max --no-progress",
"phpcs": "phpcs -n --ignore=vendor --extensions=php .",
"phpcbf": "phpcbf -n --ignore=vendor --extensions=php .",
"phplint": "parallel-lint -j 10 --exclude vendor .",
"tests": "phpunit",
"build": [
"@phplint",
"@phpcs",
"@phpstan",
"@tests"
],
"ci": [
"@composer validate --strict",
"@build"
]
},
"autoload": {
"psr-0": {
"Keboola\\CsvTable": "src/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}