This bundles gives you access to the Columns Widget.
This widget set up the layout of your pages in order to create from 1 to 6 colums on the same level. Each column can holds any kind of widget.
If you haven't already, you can follow the steps to set up Victoire here
Run the following composer command :
php composer.phar require victoire/layout-widget
Do not forget to add the bundle in your AppKernel !
class AppKernel extends Kernel
{
public function registerBundles()
{
$bundles = array(
...
new Victoire\Widget\LayoutBundle\VictoireWidgetLayoutBundle(),
);
return $bundles;
}
}