Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yiisoft/yii2-bootstrap
Yii 2 Bootstrap 3 Extension
https://github.com/yiisoft/yii2-bootstrap
bootstrap bootstrap3 css hacktoberfest yii yii2
Last synced: 3 days ago
JSON representation
Yii 2 Bootstrap 3 Extension
- Host: GitHub
- URL: https://github.com/yiisoft/yii2-bootstrap
- Owner: yiisoft
- License: bsd-3-clause
- Created: 2013-11-03T04:40:47.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2023-10-04T13:51:49.000Z (about 1 year ago)
- Last Synced: 2024-10-29T14:35:33.092Z (about 2 months ago)
- Topics: bootstrap, bootstrap3, css, hacktoberfest, yii, yii2
- Language: PHP
- Homepage: http://www.yiiframework.com
- Size: 9.86 MB
- Stars: 185
- Watchers: 50
- Forks: 193
- Open Issues: 30
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: .github/CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE.md
- Security: .github/SECURITY.md
Awesome Lists containing this project
README
Twitter Bootstrap Extension for Yii 2
This is the Twitter Bootstrap extension for [Yii framework 2.0](https://www.yiiframework.com). It encapsulates [Bootstrap 3](https://getbootstrap.com/docs/3.4/) components
and plugins in terms of Yii widgets, and thus makes using Bootstrap components/plugins
in Yii applications extremely easy.For license information check the [LICENSE](LICENSE.md)-file.
Documentation is at [docs/guide/README.md](docs/guide/README.md).
[![Latest Stable Version](https://poser.pugx.org/yiisoft/yii2-bootstrap/v/stable.png)](https://packagist.org/packages/yiisoft/yii2-bootstrap)
[![Total Downloads](https://poser.pugx.org/yiisoft/yii2-bootstrap/downloads.png)](https://packagist.org/packages/yiisoft/yii2-bootstrap)
[![Build Status](https://github.com/yiisoft/yii2-bootstrap/workflows/build/badge.svg)](https://github.com/yiisoft/yii2-bootstrap/actions)Installation
------------The preferred way to install this extension is through [composer](https://getcomposer.org/download/).
Either run
```
php composer.phar require --prefer-dist yiisoft/yii2-bootstrap
```or add
```
"yiisoft/yii2-bootstrap": "~2.0.0"
```to the require section of your `composer.json` file.
Usage
----For example, the following
single line of code in a view file would render a Bootstrap Progress plugin:```php
= yii\bootstrap\Progress::widget(['percent' => 60, 'label' => 'test']) ?>
```