generated from keboola/template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
67 lines (67 loc) · 1.87 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
{
"name": "keboola/api-bundle",
"description": "Keboola API Bundle",
"type": "symfony-bundle",
"require": {
"php": ">=8.1",
"cuyz/valinor-bundle": "^0.2.3",
"keboola/permission-checker": "^2.0",
"keboola/service-client": "^1.0",
"monolog/monolog": "^2.0",
"symfony/dependency-injection": "^7.0|^6.0",
"symfony/monolog-bundle": "^3.8",
"symfony/security-bundle": "^7.0|^6.0"
},
"require-dev": {
"keboola/api-error-control": "4.3",
"keboola/coding-standard": "^15.0",
"keboola/kbc-manage-api-php-client": "^7.0",
"keboola/storage-api-php-client-branch-wrapper": "^6.1",
"phpstan/phpstan": "^1.8",
"phpstan/phpstan-phpunit": "^1.1",
"phpstan/phpstan-symfony": "^1.3",
"phpunit/phpunit": "^9.5",
"sempro/phpunit-pretty-print": "^1.4",
"symfony/framework-bundle": "^6.1",
"symfony/yaml": "^6.1"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Keboola\\ApiBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Keboola\\ApiBundle\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Keboola",
"email": "[email protected]"
}
],
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"sort-packages": true,
"lock": false
},
"scripts": {
"tests": "phpunit",
"phpstan": "phpstan analyse -c phpstan.neon",
"phpcs": "phpcs --extensions=php src tests",
"phpcbf": "phpcbf --extensions=php src tests",
"build": [
"@phpcs",
"@phpstan",
"@tests"
],
"ci": [
"@composer validate --no-check-all --strict",
"@build"
]
}
}