forked from Cyber-Duck/laravel-excel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 1.18 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
{
"name": "cyber-duck/laravel-excel",
"type": "library",
"description": "This package provides a way to export an Eloquent collection as an excel file and to import a Excel file as an Eloquent collection.",
"keywords": ["laravel", "excel", "exporter", "export", "importer", "import", "eloquent", "spout"],
"license": "MIT",
"authors": [
{
"name": "Simone Todaro",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": ">=5.4.0",
"box/spout": "^2.4",
"illuminate/database": "4.*|5.*",
"illuminate/support": "4.*|5.*"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"phpspec/phpspec": "~2.1",
"laravel/laravel": "~5.3"
},
"autoload": {
"psr-4": {
"Cyberduck\\LaravelExcel\\": "src"
}
},
"autoload-dev": {
"files": [
"tests/TestCase.php",
"tests/utils/Item.php",
"tests/utils/Migration.php",
"tests/utils/DatabaseSeeder.php",
"tests/utils/FirstColumnOnlySerialiser.php"
]
},
"minimum-stability": "stable"
}