-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
48 lines (48 loc) · 1.29 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
{
"name" : "zuko/flex2cell",
"description" : "A flexible and efficient library for exporting data to Excel (XLS, XLSX) with support for mappings, formatters, and handling large datasets. Working with less dependencies, avoid future breaks & conclusions.",
"type" : "library",
"license" : "MIT",
"replace": {
"zuko/excel-exporter": "self.version",
"zuko/laravel-excel-export": "self.version"
},
"autoload" : {
"psr-4" : {
"Zuko\\Flex2Cell\\" : "src/"
},
"files" : [
"src/aliases.php"
]
},
"authors" : [
{
"name" : "Zuko",
"email" : "[email protected]"
}
],
"minimum-stability" : "stable",
"prefer-stable" : true,
"require" : {
"php" : ">=7.0 <9",
"phpoffice/phpspreadsheet" : "^1.29",
"ext-ctype" : "*"
},
"require-dev" : {
"laravel/pint" : "^1.18"
},
"extra" : {
"laravel" : {
"providers" : [
"Zuko\\Flex2Cell\\Flex2CellServiceProvider"
]
}
},
"config" : {
"sort-packages" : true
},
"support" : {
"issues" : "https://github.com/ultra-bugs/flex2cell/issues",
"source" : "https://github.com/ultra-bugs/flex2cell"
}
}