This mirror is deprecated. Please use the official one, phpoffice/phpexcel, instead.
This repository contains the unchanged source code of PHPExcel, turned into a Composer package.
For more information on PHPExcel, including documentation and tests, please see the PHPExcel website.
If you don’t have Composer yet, you should get it now.
-
Add the package to your
composer.json
:"require": { ... "phpexcel/phpexcel": "1.7.6", ... }
-
Install:
$ php composer.phar install
-
And use:
<?php require_once "vendor/autoload.php"; $phpExcel = new \PHPExcel(); ...