-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
84 lines (84 loc) · 2.67 KB
/
composer.json
File metadata and controls
84 lines (84 loc) · 2.67 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
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
{
"name": "keboola/job-queue-internal-api-php-client",
"license": "MIT",
"type": "library",
"description": "Client for internal job queue API",
"keywords": [
"keboola",
"job",
"queue",
"client"
],
"authors": [
{
"name": "Keboola",
"email": "devel@keboola.com"
}
],
"autoload": {
"psr-4": {
"Keboola\\JobQueueInternalClient\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Keboola\\JobQueueInternalClient\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.2",
"ext-json": "*",
"guzzlehttp/guzzle": "^6.3|^7.0",
"keboola/job-queue-artifacts": "^4.0.3|*@dev",
"keboola/kbc-manage-api-php-client": "^5.2|^6.0|^7.0|^8.0|^9.0",
"keboola/object-encryptor": "^2.12",
"keboola/permission-checker": "^2.0",
"keboola/storage-api-client": "^15.2|^16.0|^17.0|^18.0",
"keboola/storage-api-php-client-branch-wrapper": "^6.0",
"monolog/monolog": "^2.6|^3.0",
"psr/log": "^1.1|^2.0|^3.0",
"symfony/config": "^5.4|^6.0|^7.0",
"symfony/uid": "^5.4|^6.2|^7.0",
"symfony/validator": "^5.4|^6.0|^7.0"
},
"require-dev": {
"infection/infection": "^0.27",
"keboola/coding-standard": ">=14.0",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-phpunit": "^2.0",
"phpstan/phpstan-symfony": "^2.0",
"phpunit/phpunit": "^9.5",
"sempro/phpunit-pretty-print": "^1.4",
"symfony/dotenv": "^6.3|^7.0"
},
"scripts": {
"pre-autoload-dump": "Aws\\Script\\Composer\\Composer::removeUnusedServices",
"tests": "phpunit --coverage-clover /tmp/build-logs/clover.xml --coverage-xml=/tmp/build-logs/coverage-xml --log-junit=/tmp/build-logs/phpunit.junit.xml",
"phpstan": "phpstan analyse --no-progress -c phpstan.neon",
"phpcs": "phpcs --extensions=php src tests",
"phpcbf": "phpcbf --extensions=php src tests",
"infection": "infection --threads=4 --min-covered-msi=90 --coverage=/tmp/build-logs --only-covered --skip-initial-tests",
"ci": [
"@composer validate --no-check-all --strict",
"@phpcs",
"@phpstan",
"@tests"
]
},
"config": {
"sort-packages": true,
"process-timeout": 3600,
"lock": false,
"allow-plugins": {
"infection/extension-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"extra": {
"aws/aws-sdk-php": [
"S3",
"Kms",
"Sts"
]
}
}