Skip to content

Latest commit

 

History

History
34 lines (20 loc) · 835 Bytes

README.md

File metadata and controls

34 lines (20 loc) · 835 Bytes

This mirror is deprecated. Please use the official one, phpoffice/phpexcel, instead.

PHPExcel

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.

Installation

If you don’t have Composer yet, you should get it now.

  1. Add the package to your composer.json:

     "require": {
       ...
       "phpexcel/phpexcel": "1.7.6",
       ...
     }
    
  2. Install:

     $ php composer.phar install
    
  3. And use:

     <?php 
     
     require_once "vendor/autoload.php";
     
     $phpExcel = new \PHPExcel();
     ...