This is a Symfony 3 to 7 Bundle helps you to read and write Spreadsheet files (including pdf, xls, xlsx, odt, csv), thanks to the PHPSpreadsheet library.
The supported formats are sames of PhpSpreadsheet (Open Document .ods, Office Excel .xlsx, BIFF 8 .xls, CSV, PDF).
1 Add to composer.json to the require key
composer require roromix/spreadsheetbundle2 Register the bundle :
Symfony standard installation : app/AppKernel.php
$bundles = array(
// ...
new Roromix\Bundle\SpreadsheetBundle\RoromixSpreadsheetBundle(),
);Symfony Flex installation (normaly, it's auto-generated) : config/bundles.php
return [
// ...
Roromix\Bundle\SpreadsheetBundle\RoromixSpreadsheetBundle::class => ['all' => true],
];This bundle is under the MIT license. See the complete license in the bundle:



