Skip to content

Latest commit

 

History

History
18 lines (15 loc) · 332 Bytes

installation.md

File metadata and controls

18 lines (15 loc) · 332 Bytes

Installation

  1. Run composer require ob/highcharts-bundle

  2. Register the bundle in your app/AppKernel.php:

     <?php
     ...
     public function registerBundles()
     {
         $bundles = array(
             ...
             new Ob\HighchartsBundle\ObHighchartsBundle(),
             ...
         );
     ...