-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
87 lines (87 loc) · 2.58 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "keboola/dockerbundle",
"type": "library",
"license": "MIT",
"description": "Component for running Docker images in KBC",
"authors": [
{
"name": "Keboola",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.2",
"ext-json": "*",
"ext-zip": "*",
"keboola/artifacts": "^3.1",
"keboola/common-exceptions": "^1.0",
"keboola/gelf-server": "^4.0",
"keboola/input-mapping": "^18.8",
"keboola/oauth-v2-php-client": "^4.0",
"keboola/object-encryptor": "^2.2",
"keboola/output-mapping": "^24.30",
"keboola/php-utils": "^5.0",
"keboola/sandboxes-api-php-client": "^6.7",
"keboola/staging-provider": "^9.0",
"keboola/storage-api-client": "^v15.0",
"keboola/storage-api-php-client-branch-wrapper": "^6.0",
"monolog/monolog": "^2.5",
"mustache/mustache": "^2.13",
"symfony/http-foundation": "^5.4|^6.2",
"symfony/monolog-bridge": "^5.4|^6.2",
"symfony/validator": "^5.4|^6.2",
"vkartaviy/retry": "^0.2"
},
"require-dev": {
"keboola/coding-standard": ">=14.0",
"phpstan/phpstan": "^1.9",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/phpstan-symfony": "^1.2",
"phpunit/phpunit": "^9.5",
"sempro/phpunit-pretty-print": "^1.4",
"symfony/dotenv": "^5.4|^6.2"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Keboola\\DockerBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Keboola\\DockerBundle\\Tests\\": "Tests/",
"Keboola\\DockerBundle\\BackendTests\\": "Tests/backend-specific-tests"
}
},
"scripts": {
"pre-autoload-dump": "Aws\\Script\\Composer\\Composer::removeUnusedServices",
"tests": "phpunit",
"phpstan": "phpstan analyse --no-progress --configuration phpstan.neon",
"phpcs": "phpcs --extensions=php src Tests",
"phpcbf": "phpcbf --extensions=php src Tests",
"check": [
"@composer validate --no-check-all --strict",
"@phpcs",
"@phpstan"
],
"ci": [
"@check",
"@tests"
]
},
"config": {
"sort-packages": true,
"lock": false,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"extra": {
"aws/aws-sdk-php": [
"S3",
"Kms",
"Sts",
"Ecr"
]
}
}