-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 977 Bytes
/
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
{
"name": "php-etl/mapping-contracts",
"description": "Contracts for building compiled data mappers",
"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/property-access": "^6.0",
"php-etl/metadata-contracts": "0.2.*"
},
"autoload": {
"psr-4": {
"Kiboko\\Contract\\Mapping\\": "src/"
}
},
"config": {
"bin-dir": "bin"
},
"extra": {
"branch-alias": {
"dev-main": "0.4.x-dev"
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.38",
"phpstan/phpstan": "^1.10",
"rector/rector": "^0.15"
}
}