是否有任何Bundle可以在symfony2中使用,它具有Bootstrap3的功能?
我自己尝试过编码,但是有很多组件存在问题,所以要快速完成我的项目,我正在寻找已经制作的软件包。
答案 0 :(得分:7)
您正在寻找MopaBootstrapBundle,它在您的Symfony2项目(表单,菜单......)中集成了Twitter引导程序
Github:https://github.com/phiamo/MopaBootstrapBundle
文档:https://github.com/phiamo/MopaBootstrapBundle/blob/master/Resources/doc/index.md
答案 1 :(得分:4)
您也可以尝试http://bootstrap.braincrafted.com/。 对我来说非常好。
答案 2 :(得分:3)
从Symfony 2.6开始,对表单的Bootstrap支持是标准的:http://symfony.com/doc/current/cookbook/form/form_customization.html#what-are-form-themes
只需更新您的config.yml即可使用它:
# config.yml
twig:
# ...
form_themes:
- bootstrap_3_layout.html.twig
玩得开心!
答案 3 :(得分:-1)
您可以将github repository添加到作曲家。将其添加到composer.json
,如下所示:
{
"repositories": [
{
"type": "vcs",
"url": "https://github.com/twbs/bootstrap"
}
],
"require": {
"twbs/bootstrap": "master"
}
}
有关更多示例和说明,请参阅composer documentation