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.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package export

Export interface with a CSV implementation

Latest Version on Packagist Build Status Code Coverage Quality Score

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

All Contributors

License

The MIT License (MIT). Please see License File for more information.


All versions of export with dependencies

PHP Build Version
Package Version
Requires php Version >=5.5.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package madewithlove/export contains the following files

Loading the files please wait ....