Download the PHP package quorum/exporter without Composer

On this page you can find all versions of the php package quorum/exporter. 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 exporter

Exporter

Latest Stable Version Total Downloads License ci.yml

A Streamed Data Export Tool

Supported formats:

Requirements

Installing

Install the latest version with:

Example

Simple CSV Export

Documentation

Class: \Quorum\Exporter\DataExport

Method: DataExport->__construct

DataExport is the object used to orchestrate the export process regardless of export format.

Parameters:

Method: DataExport->addSheet

Add a Data Sheet to the export.

Parameters:

Method: DataExport->export

Trigger the final export process.

Parameters:

Class: \Quorum\Exporter\DataSheet

Method: DataSheet->__construct

DataSheet is the representation of a Worksheet

Parameters:

Method: DataSheet->getName

Get the name of the sheet. Use thereof is Engine Specific


Method: DataSheet->addRow

Append a row worth of data to the end of the Worksheet.

Parameters:

Throws: \Quorum\Exporter\Exceptions\InvalidDataTypeException


Method: DataSheet->addRows

Append multiple rows of data to the end of the Worksheet.

Parameters:

Method: DataSheet->current

Return the current value


Method: DataSheet->next

Move forward to next element


Method: DataSheet->key

Return the key of the current element


Method: DataSheet->valid

Checks if current position is valid


Method: DataSheet->rewind

Rewind the Iterator to the first element

Class: \Quorum\Exporter\EngineInterface

Class: \Quorum\Exporter\Engines\CsvEngine

Method: CsvEngine->__construct

The default and highly recommended export format for CSV tab delimited UTF-16LE with leading Byte Order Mark.

While this may seem like an odd choice, the reason for this is cross platform Microsoft Excel compatibility.

You can read more on the topic here
Parameters:

Method: CsvEngine->setEnclosure

Character to use as CSV value enclosure. Commonly this will be "


Method: CsvEngine->setTmpDir

Set the tmpDir to write interim files to.

Defaults to sys_get_temp_dir


Method: CsvEngine->getMultiSheetStrategy

Get the current strategy for Multi-Sheet export


Method: CsvEngine->setMultiSheetStrategy

Set the strategy for allowing multiple sheets.

Supported strategies are CsvEngine::STRATEGY_ZIP and CsvEngine::STRATEGY_CONCAT

Parameters:

Method: CsvEngine->getDelimiter

Gets delimiter. If unset, UTF-16 and UTF-32 default to TAB "\t", everything else to COMMA ","


Method: CsvEngine->setDelimiter

Sets delimiter. Setting to NULL triggers automatic delimiter decision based on recommended encoding rules.

Parameters:

Method: CsvEngine->getEnclosure

Get the current character used for enclosure.


Method: CsvEngine->disableBom

Whether to disable the leading Byte Order Mark for the given encoding from being output.

Class: \Quorum\Exporter\Engines\SpreadsheetMLEngine


Method: SpreadsheetMLEngine->setCreatedTime

Parameters:

Class: \Quorum\Exporter\Exceptions\ExportException

Class: \Quorum\Exporter\Exceptions\InvalidDataTypeException

Class: \Quorum\Exporter\Exceptions\OutputException

Class: \Quorum\Exporter\Exceptions\WritableException


All versions of exporter with dependencies

PHP Build Version
Package Version
Requires maennchen/zipstream-php Version ~2.1
ext-spl Version *
ext-mbstring Version *
ext-dom Version *
ext-json Version *
php Version >=7.4
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 quorum/exporter contains the following files

Loading the files please wait ....