-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
29 lines (29 loc) · 822 Bytes
/
composer.json
File metadata and controls
29 lines (29 loc) · 822 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
28
29
{
"name": "ns/table-export-bundle",
"description": "Simple method to take an html table and export to CSV/XLS",
"keywords": ["xls","table","html","export"],
"homepage": "https://github.com/NobletSolutions/TableExportBundle",
"license": "MIT",
"authors": [
{
"name": "Nathanael David Noblet",
"email": "nathanael@noblet.ca"
}
],
"require": {
"php": ">=8.3",
"ext-dom": "*",
"symfony/http-foundation": "^6.0||^7.0",
"twig/twig": "^2.0||^3.0",
"phpoffice/phpspreadsheet": "^1.9"
},
"autoload": {
"psr-4": { "NS\\TableExportBundle\\": "src" }
},
"autoload-dev": {
"psr-4": { "Tests\\NS\\TableExportBundle\\": "tests" }
},
"require-dev": {
"liip/rmt": "^1.6"
}
}