jrschumacher / symfony-component-httpfoundation-csvresponse
There is no license information available for the latest version (v0.0.1) of this package.
CSV response for Symfony HttpFoundation
Package info
github.com/jrschumacher/symfony-component-httpfoundation-csvresponse
pkg:composer/jrschumacher/symfony-component-httpfoundation-csvresponse
v0.0.1
2014-06-27 20:25 UTC
Requires
This package is not auto-updated.
Last update: 2026-03-10 09:44:04 UTC
README
Use
It should be noted CsvResponse extends StreamedResponse and uses goodby/csv library. The use of this response is relatively simple.
<? use Symfony\Component\HttpFoundation\CsvResponse; $data = array( array('John Smith', 'john@smith.com'), array('Jane Smith', 'jane@smith.com') ); new CsvResponse($data);
Further Use
For further use please see goodby/csv