validaide/highchartsbundle

HighCharts integration for your Symfony 5 project.

Installs: 46 028

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 0

Open Issues: 0

Type:symfony-bundle

7.0.0 2024-04-22 11:31 UTC

README

The Validaide HighCharts Bundle project provides a HighCharts integration for your PHP 5.6+ project. It allows you to manage graphs using HighCharts (who are awesome, by the way).

Documentation

Installation

Download the Bundle

Require the library in your composer.json file:

$ composer require validaide/highchartsbundle

Register the Bundle

Now add the Bundle in your AppKernel:

// app/AppKernel.php

class AppKernel extends Kernel
{
    public function registerBundles()
    {
        ...
        
        $bundles = [
            ...
            new Validaide\HighChartsBundle\HighChartsBundle()
            ...
        ];
        
        ...
        
        return $bundles;
    }

Install dependencies

Run

$ composer install

in yourproject root directory

License

The Validaide HighCharts Bundle is under the MIT license. For the full copyright and license information, please read the LICENSE file that was distributed with this source code.