Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 631 Bytes

README.md

File metadata and controls

27 lines (20 loc) · 631 Bytes

Victoire CMS Calculator Bundle

Need to add a calculator in a victoire cms website ?

First you need to have a valid Symfony2 Victoire edition. Then you just have to run the following composer command :

php composer.phar require victoire/calculator-widget

Do not forget to add the bundle in your AppKernel !

    class AppKernel extends Kernel
    {
        public function registerBundles()
        {
            $bundles = array(
                ...
                new Victoire\Widget\CalculatorBundle\VictoireWidgetCalculatorBundle(),
            );

            return $bundles;
        }
    }