pinano/bootstrap3-bundle
Composer 安装命令:
composer require pinano/bootstrap3-bundle
包简介
Symfony2 bundle for wrapping Twitter Bootstrap 3
关键字:
README 文档
README
Current Version
Bootstrap 3.3.5
Installation
Add bundle to your composer.json file
// composer.json { "require": { // ... "pinano/bootstrap3-bundle": "dev-master" } }
Or, if you prefer, choose a specific version
// composer.json { "require": { // ... "pinano/bootstrap3-bundle": "3.3.5" } }
Add bundle to your application kernel
// app/AppKernel.php public function registerBundles() { $bundles = array( // ... new Pinano\Bootstrap3Bundle\PinanoBootstrap3Bundle(), // ... ); }
Download the bundle using Composer
$ php composer.phar update pinano/bootstrap3-bundle
Install assets
Given your server's public directory is named "web", install the public vendor resources
$ php app/console assets:install web
Optionally, use the --symlink attribute to create links rather than copies of the resources
$ php app/console assets:install --symlink web
Usage
Once all the resources are in place, if you want to use the Bootstrap 3 javascript features (modals, dropdowns, etc.) you can edit any of your twig views or layouts to include the Bootstrap3 javascript files. If you don't want to use any of these features you can skip this step. Please refer to the Bootstrap 3 documentation to see what features are available.
Note: Bootstrap 3 javascript resources require that you have previously loaded jQuery library.
{% block javascripts %}
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
{% javascripts
...
'@PinanoBootstrap3Bundle/Resources/public/js/bootstrap.js'
...
%}
<script src="{{ asset_url }}"></script>
{% endjavascripts %}
{% endblock %}
Then you will want to load the css resources to take advantage of the grid and all the responsive utilities.
Note: The bootstrap-theme.css file is optional and is only intended to make Bootstrap 3 look nice out-of-the-box..
{% block stylesheets %}
{% stylesheets filter='cssrewrite'
...
'bundles/pinanobootstrap3/css/bootstrap.css'
'bundles/pinanobootstrap3/css/bootstrap-theme.css'
...
'bundles/yourawesomebundle/css/awesomestylesheet.css'
...
%}
<link rel="stylesheet" href="{{ asset_url }}" />
{% endstylesheets %}
{% endblock %}
If you want to create your own SCSS mix-ins or variables, you should import Bootstrap 3 SCSS files instead of the CSSs and create a css output using any of the SCSS filters available for assetic:
{% block stylesheets %}
{% stylesheets filter='cssrewrite,scss'
...
'bundles/pinanobootstrap3/scss/_bootstrap.scss'
'bundles/pinanobootstrap3/scss/bootstrap/_theme.scss'
...
'bundles/yourawesomebundle/scss/awesomestylesheet.scss'
...
%}
<link rel="stylesheet" href="{{ asset_url }}" />
{% endstylesheets %}
{% endblock %}
Note: See kriswallsmith/assetic#53 for known limitations of assetic with CSS referencing.
I usually follow a simple inheritance schema when it comes to designing twig templates. That is, I have an app/Resources/views/base.html.twig file that I use as a site-wide template. Then, inside every bundle I have my own Resources/views/layout.html.twig file that extends the base template. Depending on the kind of application I'm designing I can place the Bootstrap stuff in the site-wide or the bundle-wide template. Then every view of a given bundle will extend the corresponding bundle layout.html.twig file, which in turn extends the site-wide template.
The folks at Sensio Labs have already covered this approach and you can check it in their documentation.
Licenses
I do not own Bootstrap 3 files at all, I'm just providing a Bundle package to easy-install them all. Refer to the source code of the included files from Bootstrap 3 for license information.
References
pinano/bootstrap3-bundle 适用场景与选型建议
pinano/bootstrap3-bundle 是一款 基于 CSS 开发的 Composer 扩展包,目前已累计 3.95k 次下载、GitHub Stars 达 5, 最近一次更新时间为 2013 年 09 月 02 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「bootstrap」 「bundle」 「bootstrap3」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 pinano/bootstrap3-bundle 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 pinano/bootstrap3-bundle 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 pinano/bootstrap3-bundle 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
LUYA Bootstrap 3 content
PHP and Javascrcipt helpers for creation of Bootstrap 3 UI elements
2lenet/EasyAdminPlusBundle
The bundle for easy using json-rpc api on your project
Provide a way to secure accesses to all routes of an symfony application.
DMS Meetup API Bundle, enables Meetup API clients in services
统计信息
- 总下载量: 3.95k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 5
- 点击次数: 14
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2013-09-02