-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
59 lines (59 loc) · 1.6 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
{
"name": "php-etl/fast-map",
"description": "This library implements a compiled data mapping library",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Kiboko SAS",
"homepage": "http://kiboko.fr"
},
{
"name": "Grégory Planchat",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.2",
"nikic/php-parser": "^4.15",
"symfony/property-access": "^6.0",
"symfony/expression-language": "^6.0",
"symfony/cache": "^6.0",
"doctrine/inflector": "^2.0",
"php-etl/metadata": "*",
"php-etl/mapping-contracts": "0.4.*",
"php-etl/metadata-contracts": "0.2.*",
"php-etl/satellite-toolbox": "*"
},
"require-dev": {
"mikey179/vfsstream": "^1.6",
"phpunit/phpunit": "^10.0",
"phpunit/php-invoker": "*",
"friendsofphp/php-cs-fixer": "^3.38",
"phpstan/phpstan": "^1.10",
"rector/rector": "^0.15",
"php-etl/phpspec-extension": "*"
},
"autoload": {
"psr-4": {
"Kiboko\\Component\\FastMap\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"spec\\Kiboko\\Component\\FastMap\\": "spec/",
"unit\\Kiboko\\Component\\FastMap\\": "unit/",
"functional\\Kiboko\\Component\\FastMap\\": "functional/"
}
},
"config": {
"bin-dir": "bin"
},
"extra": {
"branch-alias": {
"dev-main": "0.5.x-dev"
}
}
}