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
Requires
- php: >=5.3.3
- phpoffice/phpexcel: 1.7.*
- symfony/framework-bundle: 2.*
This package is auto-updated.
Last update: 2024-12-27 23:18:06 UTC
README
This bundle integrates PHPExcel with Symfony2.
Registered Formats
ExcelBundle registers the following formats to use in routes.
- csv
- xls
- xlsx
Sending a Response
use RWSoft\ExcelBundle\ExcelResponse; $doc = new \PHPExcel(); $objWriter = new \PHPExcel_Writer_Excel5($doc); $response = new ExcelResponse($objWriter); $response->send();