forked from dukferradj/fast-excel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.01 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
{
"name": "rap2hpoutre/fast-excel",
"type": "library",
"keywords": ["laravel", "excel", "csv", "xls", "xlsx"],
"description": "Fast Excel import/export for Laravel",
"require": {
"php": "^7.0",
"illuminate/support": "5.3.* || 5.4.* || 5.5.* || 5.6.* || 5.7.* || 5.8.* || ^6.0 || ^7.0",
"box/spout": "^2.7"
},
"require-dev": {
"illuminate/database": "5.3.* || 5.4.* || 5.5.* || 5.6.* || 5.7.* || 5.8.* || ^6.0 || ^7.0",
"phpunit/phpunit": "^6.4"
},
"autoload": {
"psr-4": {
"Rap2hpoutre\\FastExcel\\": "src/"
},
"files": [
"src/functions/fastexcel.php"
]
},
"autoload-dev": {
"psr-4": {
"Rap2hpoutre\\FastExcel\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Rap2hpoutre\\FastExcel\\Providers\\FastExcelServiceProvider"
]
}
},
"license": "MIT",
"authors": [
{
"name": "rap2h",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true
}