-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathcomposer.json
More file actions
27 lines (27 loc) · 896 Bytes
/
composer.json
File metadata and controls
27 lines (27 loc) · 896 Bytes
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
{
"name": "ticketpark/htmlphpexcel",
"type": "library",
"description": "A php library to convert html tables to Excel files, including styling.",
"keywords": ["html", "tables", "excel", "phpexcel", "phpspreadsheet", "fastexcelwriter"],
"homepage": "https://github.com/Ticketpark/HtmlPhpExcel",
"license": "MIT",
"authors": [
{"name": "Manuel Reinhard", "email": "manu@sprain.ch"}
],
"require": {
"php": "~8.2.0|~8.3.0|~8.4.0",
"ext-json": "*",
"ext-dom": "*",
"ext-intl": "*",
"avadim/fast-excel-helper": "^1.0.4",
"avadim/fast-excel-writer": "^4.5|^5.0|^6.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"friendsofphp/php-cs-fixer": "^3.35",
"rector/rector": "^1.2"
},
"autoload": {
"psr-4": { "Ticketpark\\HtmlPhpExcel\\": "lib/HtmlPhpExcel" }
}
}