Cookbook

Integrate phpxlsx with Slim

Warning

To run phpxlsx with Slim 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 Slim clean installation, the section should look like this:

  • 3- Update the autoloader of Composer:

Now, with these three easy steps completed, you can work with phpxlsx.

As an example, let's create a XLSX in a controller, and then save it in the public folder with the name output.xlsx: