Skip to content

Latest commit

 

History

History
35 lines (24 loc) · 669 Bytes

File metadata and controls

35 lines (24 loc) · 669 Bytes

SimpleExcel

This Bundle read simple Excel files.

INSTALLATION

1 Add the following entry to deps the run php bin/vendors install.

[OnemediaSimpleExcelBundle]
    git=https://github.com/Clint089/SimpleExcelBundle.git
    target=/bundles/Onemedia/SimpleExcelBundle

2 Register the bundle in app/AppKernel.php

    $bundles = array(
        // ...
        new Onemedia\SimpleExcelBundle\OnemediaSimpleExcelBundle(),
    );

3 Register namespace in app/autoload.php

    $loader->registerNamespaces(array(
         // ...
         'Onemedia'              => __DIR__.'/../vendor/bundles',
     ));