-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
33 lines (33 loc) · 1000 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
{
"name": "kiboko/etl",
"description": "This library implements the Extract-Transform-Load pattern asynchronously in PHP with the help of iterators and generators",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Grégory Planchat",
"email": "[email protected]"
}
],
"require": {
"nikic/php-parser": "^4.2"
},
"require-dev": {
"ext-pdo": "*",
"phpunit/phpunit": "6.5.*",
"johnkary/phpunit-speedtrap": "^2.0",
"mybuilder/phpunit-accelerator": "^2.0",
"box/spout": "^2.7",
"symfony/serializer": "^3.4 || ^4.0",
"monolog/monolog": "^1.24"
},
"autoload": {
"psr-4": {
"Kiboko\\Component\\ETL\\": ""
}
},
"suggest": {
"box/spout": "In order to read Excel (.xlsx) files, the box/spout package is required.",
"ext-pdo": "In order to read and write to databases with the PDO extension."
}
}