Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 490 Bytes

installation.md

File metadata and controls

30 lines (22 loc) · 490 Bytes

Installation

Download the Bundle

Require the bundle in your composer.json file:

$ composer require egeloen/form-extra-bundle

Register the Bundle

Then, update your app/AppKernel.php:

class AppKernel extends Kernel
{
    public function registerBundles()
    {
        $bundles = array(
            new Ivory\FormExtraBundle\IvoryFormExtraBundle(),
            // ...
        );

        // ...
    }
}

You're done, the bundle is ready to be used!