roromix/spreadsheetbundle

This is a Symfony 3.2 to 7 Bundle helps you to read and write Spreadsheet files (including pdf, xls, xlsx, odt, csv), thanks to the PHPSpreadsheet library

Installs: 349 353

Dependents: 1

Suggesters: 0

Security: 0

Stars: 23

Watchers: 3

Forks: 7

Open Issues: 0

Type:symfony-bundle

v2.0.1 2024-01-14 13:47 UTC

This package is auto-updated.

Last update: 2024-04-14 14:31:43 UTC


README

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.

Total Downloads Latest Stable Version Latest Unstable Version

Supported formats

The supported formats are sames of PhpSpreadsheet (Open Document .ods, Office Excel .xlsx, BIFF 8 .xls, CSV, PDF).

Installation

1 Add to composer.json to the require key

    composer require roromix/spreadsheetbundle

2 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],
    ];

License

This bundle is under the MIT license. See the complete license in the bundle:

License