-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
82 lines (82 loc) · 2.43 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
{
"name": "keboola/configuration-variables-resolver",
"license": "MIT",
"type": "library",
"description": "Library to replace variables and share-code placeholders in component configuration with actual values",
"keywords": [
"keboola",
"configuration",
"variables",
"shared-code",
"resolver",
"placeholder",
"replace"
],
"authors": [
{
"name": "Keboola",
"email": "[email protected]"
}
],
"repositories": {
"libs": {
"type": "path",
"url": "../../libs/*"
}
},
"autoload": {
"psr-4": {
"Keboola\\ConfigurationVariablesResolver\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Keboola\\ConfigurationVariablesResolver\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.2",
"ext-json": "*",
"keboola/common-exceptions": "^1.1",
"keboola/storage-api-client": "^15.2",
"keboola/storage-api-php-client-branch-wrapper": "^6.0",
"keboola/vault-api-client": "*@dev",
"mustache/mustache": "^2.13",
"psr/log": "^1.1|^2.0|^3.0",
"symfony/config": "^5.2|^6.2"
},
"require-dev": {
"infection/infection": "^0.26",
"keboola/coding-standard": ">=14.0.0",
"phpstan/phpstan": "^1.9",
"phpstan/phpstan-phpunit": "^1.3",
"phpunit/phpunit": "^9.5",
"sempro/phpunit-pretty-print": "^1.4",
"symfony/dotenv": "^5.4|^6.2"
},
"scripts": {
"tests": "phpunit --coverage-clover build/logs/clover.xml --coverage-xml=build/logs/coverage-xml --log-junit=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=2 --min-covered-msi=90 --coverage=build/logs",
"build": [
"@phpcs",
"@phpstan",
"@tests"
],
"ci": [
"@composer validate --no-check-all --strict",
"@build"
]
},
"config": {
"sort-packages": true,
"lock": false,
"process-timeout": 3600,
"allow-plugins": {
"infection/extension-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}