Skip to content

Latest commit

 

History

History
65 lines (39 loc) · 2.2 KB

README.md

File metadata and controls

65 lines (39 loc) · 2.2 KB

PhpSpreadsheet Library for Joomla!

PhpSpreadsheet Library for Joomla! 3.x

If you already know how to use PhpSpreadsheet and you need it for a Joomla! project, than this is a library package to be used in Joomla! Easy to install and update.

Download

You can download the current version / older version of PhpSpreadsheet-Joomla-Library using the PhpSpreadsheet-Joomla-Library download page.

Version

  • The current Joomla! Library is using PhpSpreadsheet 1.23.0.

Usage

// Import PhpSpreadsheet library
jimport('phpspreadsheet.phpspreadsheet');
use PhpOffice\PhpSpreadsheet\Spreadsheet;

or

require_once JPATH_LIBRARIES . '/phpspreadsheet/phpspreadsheet.php';
use PhpOffice\PhpSpreadsheet\Spreadsheet;

Now you can create a new Excel document:

$spreadsheet = new Spreadsheet();

Documentation

Bugs? Problems? Feedback?

If you have any problems installing / updating PhpSpreadsheet Library in Joomla! feel free to Add a New issue

If you are having problems with PhpSpreadsheet itself and you think is a bug or something, check the PhpSpreadsheet Issue Tracker

Credits

License

PhpSpreadsheet is licensed under LGPL (GNU LESSER GENERAL PUBLIC LICENSE)

Note

The library folder was build using the given composer.json file and executing:

composer update --no-dev --prefer-dist