Download the PHP package madewithlove/export without Composer
On this page you can find all versions of the php package madewithlove/export. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download madewithlove/export
More information about madewithlove/export
Files in madewithlove/export
Package export
Short Description Interfaces and basic implementations for file exports from a web application
License MIT
Homepage https://github.com/madewithlove/export
Informations about the package export
Export interface with a CSV implementation
Usage
What it does in one code sample:
CSV exporter
The included CSV exporter (Madewithlove\Export\Csv\Exporter
) will create the file contents for a CSV export file. For that it uses the Writer class of the league/csv
package, but that's just an implementation detail. It adheres to the Madewithlove\Export\Exporter
interface (feel free to make an XML or any other exporter implementation) and returns the file content when you call the getContent()
method on it. You can define which items it should export by passing an array or an Iterator
(like a Generator
) to the setItems($items)
method. You can also optionally set a Transformer to apply a transformation on each row of the given items. This Transformer
is used by the League\Csv\Writer
class, and may implement the Madewithlove\Export\Csv\WithHeaders
contract to let the writer know which headers the CSV file should have.
Transformers
A Transformer object has a method transform(array $row) : array
which allows you to do transformations on each row. The interface Madewithlove\Export\Csv\WithHeaders
defines a getHeaders() : array
method that returns the headers to be used in the CSV file.
This package also includes some transformer implementations for general usage:
Callable transformer
This allows you to use any callable (function) without having to create a class that implements the Transformer interface. Create one by using the factory method, or use the setter method:
Null transformer, just headers
When you don't really need to do a transformation on the row, but you do want to insert headers in the CSV file, use the JustHeaders
transformer class:
Headers decorator
When you have an existing Transformers object but you want it to add headers to the CSV file too, you don't need to extend it. Just wrap it with the WithHeadersDecorator
like this:
HTTP Response objects
Both Symfony and PSR-7 reponse objects are supported. Use the trait Madewithlove\Export\Http\SymfonyResponse
or Madewithlove\Export\Http\Psr7Response
in your controller to make a file download response object with the fileDownload($content, $filename)
method. This requires you to install the symfony/http-foundation
package or zendframework/zend-diactoros
package respectively.
Install
In order to install it via composer you should run this command:
Testing
Credits
License
The MIT License (MIT). Please see License File for more information.