Cookbook

Integrate phpxlsx with Zend Framework 2

Warning

To run phpxlsx with Zend Framework 2 it is mandatory to use the package that supports namespaces. This package is available for Advanced and Premium licenses.

The installation of phpxlsx in a project that works with Composer can be manual or using a private repository with GitHub, Bitbucket or any other distributed version control system.

To use a private repository with GitHub, Bitbucket or Gitlab you have to generate and use an SSH key or auth.json:

Advanced and Premium licenses include a sample composer.json file (plugins/sample_composer.json file in the namespaces package) that can be added in a phpxlsx private repository.

To perform a manual integration just follow these three easy steps:

  • 1- Copy the content of the phpxlsx package in the folder you use for third parties libraries, e.g. lib/phpxlsx, vendor/phpxlsx or 3rd-party/phpxlsx.
  • 2- Open the file composer.json and add the following classmap in the autoload section: "lib/phpxlsx/Classes/Phpxlsx" . Replacing lib/phpxlsx with the folder name where phpxlsx has been copied.
In a clean installation of Zend Framework 2, this section should look like this:

  • 3- Update the autoloader of Composer:

With these three easy steps you are ready to work with phpxlsx. As a practical example, let's create a XLSX in a controller and save it in the public directory with the name output.xlsx: