forked from ddeboer/data-import
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
52 lines (52 loc) · 1.73 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
{
"name": "ddeboer/data-import",
"description": "Import data from, and export data to, a range of file formats and media",
"keywords": [ "data", "import", "export", "csv", "excel", "doctrine" ],
"license": "MIT",
"authors": [
{
"name": "David de Boer",
"email": "[email protected]"
},
{
"name": "The community",
"homepage": "https://github.com/ddeboer/data-import/graphs/contributors"
}
],
"support": {
"issues": "https://github.com/ddeboer/data-import/issues",
"source": "https://github.com/ddeboer/data-import"
},
"require": {
"php": ">=5.4.0",
"psr/log": "~1.0"
},
"require-dev": {
"ext-iconv": "*",
"ext-mbstring": "*",
"ext-sqlite3": "*",
"symfony/property-access": "~2.5",
"phpoffice/phpexcel": "*",
"doctrine/dbal": "~2.4",
"doctrine/orm": "~2.4",
"symfony/console": "~2.8|~3.0",
"symfony/validator": "~2.8|~3.0",
"phpspec/phpspec": "~2.1",
"henrikbjorn/phpspec-code-coverage" : "~1.0"
},
"suggest": {
"ext-iconv": "For the CharsetValueConverter",
"ext-mbstring": "For the CharsetValueConverter",
"symfony/validator": "to use the ValidatorFilter",
"doctrine/dbal": "If you want to use the DbalReader",
"phpoffice/phpexcel": "If you want to use the ExcelReader",
"symfony/console": "If you want to use the ConsoleProgressWriter",
"symfony/property-access": "If you want to use the ObjectConverter"
},
"autoload": {
"psr-4": {
"Ddeboer\\DataImport\\": "src/",
"Ddeboer\\DataImport\\Tests\\": "tests/"
}
}
}