-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
55 lines (55 loc) · 1.29 KB
/
composer.json
File metadata and controls
55 lines (55 loc) · 1.29 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
52
53
54
55
{
"name": "keboola/google-client-bundle",
"description": "Keboola Google API Client",
"license": "MIT",
"keywords": ["keboola", "google", "rest", "client"],
"authors": [
{
"name": "Miroslav Čillík",
"email": "miro@keboola.com"
}
],
"require": {
"php": "^8.1",
"guzzlehttp/guzzle": "^7.0",
"monolog/monolog": "^2.1",
"google/auth": "^1.26"
},
"require-dev": {
"keboola/coding-standard": "^15.0",
"php-parallel-lint/php-parallel-lint": "^1.2",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^9.5"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Keboola\\Google\\ClientBundle\\": "src/",
"Keboola\\Google\\ClientBundle\\Tests\\": "tests/"
}
},
"scripts": {
"tests": "phpunit --testdox",
"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 .",
"check": [
"@phplint",
"@phpcs",
"@phpstan"
],
"ci": [
"@composer validate --no-check-all --strict",
"@check",
"@tests"
]
},
"config": {
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}