-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
59 lines (59 loc) · 1.56 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-plugin",
"description": "Adapters for the Fast Map mapping library",
"type": "gyroscops-plugin",
"license": "MIT",
"authors": [
{
"name": "Grégory Planchat",
"email": "gregory@kiboko.fr"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.2",
"ext-json": "*",
"nikic/php-parser": "^4.15",
"symfony/config": "^6.0",
"php-etl/fast-map-config": "*",
"php-etl/packaging-contracts": "0.3.*",
"php-etl/satellite-toolbox": "*",
"php-etl/configurator-contracts": "0.8.*"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"phpunit/php-invoker": "*",
"php-etl/phpunit-extension": "*",
"friendsofphp/php-cs-fixer": "^3.38",
"phpstan/phpstan": "^1.10",
"rector/rector": "^0.15",
"infection/infection": "^0.26",
"php-etl/bucket": "*"
},
"autoload": {
"psr-4": {
"Kiboko\\Plugin\\FastMap\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"functional\\Kiboko\\Plugin\\FastMap\\": "tests/functional/"
}
},
"extra": {
"branch-alias": {
"dev-main": "0.8.x-dev"
},
"gyroscops": {
"plugins": ["Kiboko\\Plugin\\FastMap\\Service"]
}
},
"config": {
"bin-dir": "bin",
"allow-plugins": {
"php-http/discovery": true,
"infection/extension-installer": true
}
}
}