-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
51 lines (51 loc) · 1.28 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
{
"name": "umpirsky/extraload",
"description": "Powerful ETL library.",
"keywords": [
"etl",
"extract",
"transform",
"convert",
"load",
"import",
"export"
],
"homepage": "http://umpirsky.com",
"type": "library",
"require": {
"php": ">=5.6",
"symfony/event-dispatcher": "^2.7 || ^3.0 || ^4.0"
},
"require-dev": {
"phpspec/phpspec": "^3.0",
"behat/behat": "^3.1",
"phpunit/phpunit": "^5.1",
"symfony/console": "^3.0",
"doctrine/dbal": "^2.5",
"symfony/property-access": "^3.0",
"behat/mink-selenium2-driver": "^1.3"
},
"suggest": {
"doctrine/dbal": "Allows loading data into database using DBAL loader",
"symfony/property-access": "Allows applying transformer on property by path",
"symfony/console": "Allows displaying tabular data in console"
},
"license": "MIT",
"authors": [
{
"name": "Saša Stamenković",
"email": "[email protected]"
}
],
"autoload": {
"psr-0": { "Extraload\\": "src/" }
},
"config": {
"bin-dir": "bin"
},
"extra": {
"branch-alias": {
"dev-master": "0.1.0-dev"
}
}
}