Cookbook
Integrate phpxlsx with Symfony
Warning
To run phpxlsx with Symfony 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:
- GitHub: https://dudi.dev/composer-private-packages-github-repository
- Bitbucket: https://dev.to/minompi/using-a-bitbucket-private-repository-in-your-projects-24j9
- GitLab: https://docs.gitlab.com/user/packages/composer_repository/#install-a-composer-package
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.
- 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 a public folder with the name output.xlsx: