-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
60 lines (60 loc) · 1.63 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
58
59
60
{
"name": "maatwebsite/clerk",
"description": "An eloquent way of importing and exporting Excel and CSV in PHP 5.4+ with the power of packages PHPExcel, League/Csv and Laravel's Collections",
"license": "LGPL",
"keywords": [
"laravel",
"phpexcel",
"excel",
"csv",
"export",
"import",
"batch"
],
"authors": [
{
"name": "Maatwebsite.nl",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4.0",
"nesbot/carbon": "~1.0",
"knplabs/knp-snappy": "~0.3.4",
"league/csv": "~7.1.0@dev",
"akeneo/spreadsheet-parser": "~1.1.5",
"phpoffice/phpexcel": "~1.8.0",
"phpoffice/phpword": "~0.12.0",
"patchwork/utf8": "~1.2.1",
"symfony/http-foundation": "~2.6|~2.7@dev",
"illuminate/support": "~4.0|~5.0",
"tijsverkoyen/css-to-inline-styles": "~2.0"
},
"suggests": {
"league/csv": "Using League CSV as CSV parser",
"akeneo/spreadsheet-parser": "Using Akeneo Spreadsheet parser",
"phpoffice/phpexcel": "PHPExcel as Excel driver",
"phpoffice/phpword": "PHPWord as Word driver",
"illuminate/view": "If you want to use Blade as templating engine",
"twig/twig": "If you want to use Twig as templating engine",
"smarty/smarty": "If you want to use Smarty as templating engine"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"mockery/mockery": "~0.9",
"illuminate/view": "~4.0|~5.0",
"twig/twig": "~1.18.0",
"smarty/smarty": "~3.1.21",
"phpspec/prophecy": "1.3.1"
},
"autoload": {
"psr-4": {
"Maatwebsite\\Clerk\\": "src/"
}
},
"autoload-dev": {
"classmap": [
"tests"
]
}
}