-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
43 lines (43 loc) · 1.08 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
{
"name": "keboola/openrefine-php-client",
"license": "MIT",
"type": "project",
"description": "OpenRefine PHP Client library",
"require": {
"php": "~7.0",
"guzzlehttp/guzzle": "^6.3",
"keboola/csv": "~1.1.4",
"keboola/php-temp": "~0.1.6"
},
"require-dev": {
"phpunit/phpunit": "~5.4",
"codeclimate/php-test-reporter": "dev-master",
"symfony/finder": "^4.2",
"jakub-onderka/php-parallel-lint": "^1.0",
"phpstan/phpstan-shim": "^0.10.8",
"keboola/coding-standard": "^7.0"
},
"autoload": {
"psr-4": {
"Keboola\\": "src/Keboola/"
}
},
"scripts": {
"tests": "phpunit",
"phpstan": "phpstan analyse --no-progress --level=max src -c phpstan.neon",
"phpcs": "phpcs -n --ignore=vendor --extensions=php .",
"phpcbf": "phpcbf --extensions=php src",
"phplint": "parallel-lint -j 10 --exclude vendor .",
"build": [
"@phplint",
"@phpcs",
"@phpstan",
"@tests"
],
"ci": [
"@composer validate --no-check-all --strict",
"@build"
],
"test-reporter": "test-reporter"
}
}