-
Notifications
You must be signed in to change notification settings - Fork 31
/
composer.json
42 lines (42 loc) · 1000 Bytes
/
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
{
"name": "avadim/fast-excel-writer",
"description": "Lightweight and very fast XLSX Excel Spreadsheet Writer in PHP",
"keywords": [
"php",
"excel",
"phpexcel",
"library",
"xls",
"xlsx",
"export",
"spreadsheet",
"ms office",
"office 2007"
],
"type": "library",
"homepage": "https://github.com/aVadim483/fast-excel-writer",
"license": "MIT",
"autoload": {
"psr-4": {
"avadim\\FastExcelWriter\\": "./src/FastExcelWriter"
}
},
"require": {
"php": ">=7.4",
"ext-zip": "*",
"ext-json": "*",
"ext-mbstring": "*",
"avadim/fast-excel-helper": "^1.2"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"ext-fileinfo": "*",
"avadim/fast-excel-reader": "^2.19"
},
"funding": [
{
"type": "other",
"url": "https://www.paypal.me/VShemarov"
}
]
}