在symfony2中有沒有使用Bootstrap3的特性的Bundle?bootstrap3 Bundle for symfony2
我試過編碼自己,但有很多組件的問題,所以要快速完成我的項目我正在尋找一個已經制作的包。
在symfony2中有沒有使用Bootstrap3的特性的Bundle?bootstrap3 Bundle for symfony2
我試過編碼自己,但有很多組件的問題,所以要快速完成我的項目我正在尋找一個已經制作的包。
您正在尋找MopaBootstrapBundle這在你的Symfony2項目集成了Twitter的引導(形式,菜單...)
Github上:https://github.com/phiamo/MopaBootstrapBundle
文檔:https://github.com/phiamo/MopaBootstrapBundle/blob/master/Resources/doc/index.md
您可以將github repository添加到您的作曲家。將它添加到您的composer.json
這樣的:
{
"repositories": [
{
"type": "vcs",
"url": "https://github.com/twbs/bootstrap"
}
],
"require": {
"twbs/bootstrap": "master"
}
}
見composer documentation更多的例子和說明
你也可以試試http://bootstrap.braincrafted.com/。 對我來說非常好。
由於Symfony的2.6,爲形式引導支持標配: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
玩得開心!