rwsoft/excel-bundle

This bundle integrates PHPExcel with Symfony2.

Installs: 572

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 2

Forks: 0

Open Issues: 0

Type:symfony-bundle

1.0.0 2013-08-04 10:11 UTC

This package is auto-updated.

Last update: 2024-03-27 21:50:26 UTC


README

This bundle integrates PHPExcel with Symfony2.

Registered Formats

ExcelBundle registers the following formats to use in routes.

  • csv
  • xls
  • xlsx
  • pdf

Sending a Response

use RWSoft\ExcelBundle\ExcelResponse;

$doc = new \PHPExcel();
$objWriter = new \PHPExcel_Writer_Excel5($doc);
$response = new ExcelResponse($objWriter);
$response->send();