6

symfony2 中是否有任何具有 Bootstrap3 功能的 Bundle?

我已经尝试过自己编写代码,但是许多组件都存在问题,所以为了快速完成我的项目,我正在寻找一个已经制作好的捆绑包。

4

4 回答 4

7

您正在寻找 MopaBootstrapBundle,它在您的 Symfony2 项目(表单、菜单...)中集成了 twitter 引导程序

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

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

于 2013-08-22T11:34:07.793 回答
4

您也可以尝试http://bootstrap.braincrafted.com/。对我很有用。

于 2013-11-07T08:25:53.297 回答
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

玩得开心!

于 2015-06-30T19:10:01.353 回答
-1

您可以将github 存储库添加到您的作曲家。像这样添加它composer.json

{
    "repositories": [
        {
            "type": "vcs",
            "url": "https://github.com/twbs/bootstrap"
        }
    ],
    "require": {
        "twbs/bootstrap": "master"
    }
}

有关更多示例和说明,请参阅作曲家文档

于 2013-08-22T10:36:30.170 回答