Require the bundle in your composer.json
file:
$ composer require egeloen/form-extra-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!