-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
46 lines (46 loc) · 1.17 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
{
"name": "php-etl/configurator-contracts",
"description": "This library describes contracts for defining configuration formats and building optimized code from it",
"type": "library",
"license": "MIT",
"minimum-stability": "stable",
"authors": [
{
"name": "Kiboko SAS",
"homepage": "http://kiboko.fr"
},
{
"name": "Grégory Planchat",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2",
"nikic/php-parser": "^4.15",
"symfony/config": "^6.0",
"php-etl/packaging-contracts": "0.3.*",
"psr/log": "^3.0",
"symfony/expression-language": "^6.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.38",
"phpstan/phpstan": "^1.10",
"rector/rector": "^0.15"
},
"autoload": {
"psr-4": {
"Kiboko\\Contract\\Configurator\\": "src/"
}
},
"config": {
"bin-dir": "bin",
"allow-plugins": {
"infection/extension-installer": true
}
},
"extra": {
"branch-alias": {
"dev-main": "0.8.x-dev"
}
}
}