-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
59 lines (59 loc) · 1.54 KB
/
composer.json
File metadata and controls
59 lines (59 loc) · 1.54 KB
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/csv-plugin",
"description": "Plugins for CSV Extractor and Loader",
"type": "gyroscops-plugin",
"license": "MIT",
"authors": [
{
"name": "Grégory Planchat",
"email": "gregory@kiboko.fr"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.4",
"ext-json": "*",
"nikic/php-parser": "^5.6",
"symfony/config": "^6.0",
"php-etl/configurator-contracts": "0.8.*",
"symfony/expression-language": "^6.0",
"php-etl/packaging-contracts": "0.3.*",
"php-etl/satellite-toolbox": "*"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"php-etl/phpunit-extension": "*",
"friendsofphp/php-cs-fixer": "^3.0",
"phpstan/phpstan": "^2.1",
"infection/infection": "^0.28",
"rector/rector": "^2.3",
"php-etl/csv-flow": "*",
"mikey179/vfsstream": "^1.6"
},
"autoload": {
"psr-4": {
"Kiboko\\Plugin\\CSV\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"functional\\Kiboko\\Plugin\\CSV\\": "tests/functional/"
}
},
"extra": {
"branch-alias": {
"dev-main": "0.6.x-dev"
},
"gyroscops": {
"plugins": ["Kiboko\\Plugin\\CSV\\Service"]
}
},
"config": {
"bin-dir": "bin",
"allow-plugins": {
"infection/extension-installer": true,
"php-http/discovery": true
}
}
}