A pure PHP library for reading and writing spreadsheet files
PhpSpreadsheet is a library written in pure PHP and offers a set of classes that allow you to read and write various spreadsheet file formats such as Excel and LibreOffice Calc.
LTS: Support for PHP versions will only be maintained for a period of six months beyond the end of life of that PHP version.
Currently the required PHP minimum version is PHP 8.0, and we will support that version until May 2024.
See the composer.json
for other requirements.
Use composer to install PhpSpreadsheet into your project:
composer require phpoffice/phpspreadsheet
If you are building your installation on a
development machine that is on a different PHP version to the server
where it will be deployed, or if your PHP CLI version is not the same as
your run-time such as php-fpm
or Apache's mod_php
, then you might want to add the following to your composer.json
before installing:
{
"config": {
"platform": {
"php": "8.0"
}
}
}
and then run
composer install
to ensure that the correct dependencies are retrieved to match your deployment environment.
See CLI vs Application run-time for more details.
from https://github.com/PHPOffice/PhpSpreadsheet
------
PHPExcel last version, 1.8.1, was released in 2015. The project was officially deprecated in 2017 and permanently archived in 2019.
The project has not be maintained for years and must not be used anymore. All users must migrate to its direct successor PhpSpreadsheet, or another alternative.
from https://github.com/PHPOffice/PHPExcel
No comments:
Post a Comment