-
Notifications
You must be signed in to change notification settings - Fork 25
/
composer.json
57 lines (57 loc) · 1.44 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
{
"name": "knplabs/etl",
"type": "library",
"description": "Extract - Transform - Load",
"keywords": [
"etl",
"extract",
"transform",
"load",
"import"
],
"homepage": "http://knplabs.com",
"license": "MIT",
"authors": [
{
"name": "Knplabs",
"homepage": "http://knplabs.com"
},
{
"name": "Florain Klein",
"email": "florian.klein@free.fr"
}
],
"require": {
"php": ">=5.5.0",
"symfony/finder": "^3.0",
"symfony/property-access": "^3.0",
"psr/log": "^1.0"
},
"require-dev": {
"phpspec/phpspec": "^2.4",
"doctrine/orm": "^2.5",
"symfony/finder": "^3.0",
"symfony/console": "^3.0",
"pimple/pimple": "^3.0",
"phpoffice/phpexcel": "~1.8"
},
"suggest": {
"doctrine/orm": "To use ORM loader",
"doctrine/dbal": "To use DBAL loader",
"symfony/finder": "To use Regex-filename CSV extractor",
"symfony/console": "To use cli import command",
"pimple/pimple": "To configure your ETL process",
"phpoffice/phpexcel": "To use Excel files extractor"
},
"autoload": {
"psr-0": { "Knp\\ETL": "src/", "Entity": "" }
},
"config": {
"bin-dir": "bin"
},
"extra": {
"branch-alias": {
"dev-master": "0.1.x-dev"
}
}
}