Skip to content
This repository has been archived by the owner on Nov 11, 2024. It is now read-only.

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(),
             ...
         );
     ...