fusonic/spreadsheetexport 0.1.1

PHP Library to export data in various spreadsheet formats like ODS, CSV, TSV ...

Download .zip Project on GitHub

SpreadsheetExport is a PHP library which allows you to export spreadsheet data in various formats while only writing code once. Currently supported are

  • OpenDocument Spreadsheet (.ods)
  • Comma Separated Values (.csv)
  • Tab Separated Values (.tsv)

Requirements

Installation

The most flexible installation method is using Composer: Simply create a composer.json file in the root of your project:

{
    "require": {
        "fusonic/spreadsheetexport": "@dev"
    }
}

Install composer and run install command:

curl -s http://getcomposer.org/installer | php
php composer.phar install

Once installed, include vendor/autoload.php in your script.

require "vendor/autoload.php";

License

This library is licensed under the MIT license.