Files
yii2/extensions/bootstrap
Carsten Brandt 8176a392bb Changed version constratints to be semantic versioning again
- in composer the `~` operator is just a shortcut for `~1.0` = `>=1.0.0,<2.0.0`
  it does not prevent dev versions to be installed but neither does `1.*`
- dev versions are constrolled via `minimum-stability` setting and the
  `@dev`, `@beta`, `@stable`,... settings.
- setting bower packages that ship compiled files only with the stable
  release to use `@stable` in composer.json of the applictaions. This
  setting can be removed when we remove the `minimum-stability=dev`
  setting after GA.
2014-09-22 13:15:43 +02:00
..
2014-08-13 12:58:37 +04:00
2014-07-30 00:40:46 +02:00
2014-07-30 00:40:46 +02:00
2014-07-30 00:40:46 +02:00
2014-08-07 16:37:48 +04:00
2014-07-30 00:40:46 +02:00
2014-07-30 00:40:46 +02:00
2014-08-08 13:53:39 +04:00
2014-07-30 00:40:46 +02:00
2014-07-30 00:40:46 +02:00
2014-01-10 21:06:25 -05:00
2014-07-30 00:40:46 +02:00
2014-07-30 00:40:46 +02:00

Twitter Bootstrap Extension for Yii 2

This is the Twitter Bootstrap extension for Yii 2. It encapsulates Bootstrap components and plugins in terms of Yii widgets, and thus makes using Bootstrap components/plugins in Yii applications extremely easy. For example, the following single line of code in a view file would render a Bootstrap Progress plugin:

<?= yii\bootstrap\Progress::widget(['percent' => 60, 'label' => 'test']) ?>

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require --prefer-dist yiisoft/yii2-bootstrap "*"

or add

"yiisoft/yii2-bootstrap": "*"

to the require section of your composer.json file.