-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathcomposer.json
More file actions
22 lines (22 loc) · 766 Bytes
/
composer.json
File metadata and controls
22 lines (22 loc) · 766 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "roromix/spreadsheetbundle",
"description": "This is a Symfony 7.1+ Bundle helps you to read and write Spreadsheet files (including pdf, xls, xlsx, odt, csv), thanks to the PHPSpreadsheet library",
"type": "symfony-bundle",
"authors": [
{
"name": "Romain Harache",
"email": "romain.harache@gmail.com"
}
],
"keywords": ["excel", "phpexcel", "spreadsheet", "symfony", "bundle"],
"homepage": "https://github.com/roromix/SpreadsheetBundle",
"license": "MIT",
"require": {
"php": ">=8.2",
"symfony/framework-bundle": "~7.1",
"phpoffice/phpspreadsheet": "~1.0"
},
"autoload": {
"psr-4": { "Roromix\\Bundle\\SpreadsheetBundle\\": "src/" }
}
}