yiisoft / yii2-bootstrap5
Twitter Bootstrap v5 对 Yii 框架的扩展
2.0.4
2022-11-30 08:25 UTC
Requires
- php: >=7.0
- ext-json: *
- bower-asset/bootstrap: ^5.1.0
- yiisoft/yii2: ^2.0.42
Requires (Dev)
- phpunit/phpunit: ^6.5.14
- twbs/bootstrap-icons: ^1.7.2
- yiisoft/yii2-coding-standards: ~2.0
Suggests
- twbs/bootstrap-icons: Add this package to the `require` section of your `composer.json` if you'd like to use the bootstrap icon asset.
This package is auto-updated.
Last update: 2024-09-20 16:58:38 UTC
README
Twitter Bootstrap 5 扩展包为 Yii 2
这是 Twitter Bootstrap 扩展包,用于 Yii 框架 2.0。它将 Bootstrap 5 组件和插件封装为 Yii 小部件,因此使得在 Yii 应用程序中使用 Bootstrap 组件/插件变得极其简单。
有关许可信息,请参阅 LICENSE 文件。
文档在 docs/guide/README.md。
安装
安装此扩展的首选方法是使用 composer。
运行以下命令之一:
php composer.phar require --prefer-dist yiisoft/yii2-bootstrap5
或者将以下内容添加到您的 composer.json
文件的 require 部分:
"yiisoft/yii2-bootstrap5": "*"
翻译
通过引导过程,i18n 配置将自动添加到您的应用程序配置中。
用法
例如,在视图文件中的以下单行代码将渲染一个 Bootstrap 进度插件
<?= yii\bootstrap5\Progress::widget(['percent' => 60, 'label' => 'test']) ?>