-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
74 lines (74 loc) · 2.18 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
{
"name": "keboola/object-encryptor",
"description": "JSON object encryption library",
"license": "MIT",
"keywords": ["encryption", "json"],
"authors": [
{
"name": "Keboola",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Keboola\\ObjectEncryptor\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Keboola\\ObjectEncryptor\\Tests\\": "tests/"
}
},
"require": {
"php": ">=8.2",
"ext-json": "*",
"ext-zlib": "*",
"aws/aws-sdk-php": "^3.209",
"defuse/php-encryption": "^2.3",
"google/cloud-kms": "^1.20",
"keboola/azure-key-vault-client": "^3.0",
"keboola/common-exceptions": "^1.2",
"vkartaviy/retry": "^0.2"
},
"require-dev": {
"infection/infection": "^0.26",
"keboola/coding-standard": "^15.0",
"phpstan/phpstan": "^1.8",
"phpstan/phpstan-phpunit": "^1.0",
"phpunit/phpunit": "^9.5",
"sempro/phpunit-pretty-print": "^1.4",
"symfony/dotenv": "^5.4|^6.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",
"phpcs": "phpcs --extensions=php src tests",
"phpstan": "phpstan analyse --no-progress -c phpstan.neon",
"infection": "infection --threads=4 --min-covered-msi=80 --coverage=/tmp/build-logs --only-covered",
"build": [
"@phpcs",
"@phpstan",
"@tests"
],
"ci": [
"@composer validate --no-check-all --strict",
"@build"
]
},
"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"
]
}
}