Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Bootstrap3 Bundle for symfony2

Is there any Bundle for using in symfony2 that has features of Bootstrap3?

I have tried coding myself but there are issues with many components so to complete my project quickly I am searching for an already made bundle.

like image 295
Ravi Avatar asked Aug 22 '13 10:08

Ravi


3 Answers

You are looking for MopaBootstrapBundle which integrates twitter bootstrap in your Symfony2 project (form, menu...)

Github: https://github.com/phiamo/MopaBootstrapBundle

Docs: https://github.com/phiamo/MopaBootstrapBundle/blob/master/Resources/doc/index.md

like image 199
sf_tristanb Avatar answered Nov 09 '22 22:11

sf_tristanb


You can try http://bootstrap.braincrafted.com/ also. Works very good for me.

like image 22
Andrej Sramko Avatar answered Nov 09 '22 20:11

Andrej Sramko


As of Symfony 2.6, Bootstrap support for forms comes standard: http://symfony.com/doc/current/cookbook/form/form_customization.html#what-are-form-themes

Just update your config.yml to use it:

# config.yml
twig:
    # ...
    form_themes:
        - bootstrap_3_layout.html.twig

Have fun!

like image 3
weaverryan Avatar answered Nov 09 '22 22:11

weaverryan