yiiassets/yii2-bootbox-asset

This package is abandoned and no longer maintained. No replacement package was suggested.

Yii2 asset bundle of bootbox plugin (http://bootboxjs.com/)

0.1.2 2015-11-24 01:05 UTC

This package is not auto-updated.

Last update: 2016-05-27 09:33:43 UTC


README

Yii2 asset bundle of bootbox plugin (http://bootboxjs.com/)

Latest Stable Version Total Downloads License

Install

Either run

php composer.phar require --prefer-dist yiiassets/yii2-bootbox-asset "*"

or add

"yiiassets/yii2-bootbox-asset": "*"

to the require section of your composer.json file.

Add your depending Asset Bundle

class AppAsset extends AssetBundle
{
    // ...
    public $depends = [
        'yii\web\YiiAsset',
        'yii\bootstrap\BootstrapAsset',
        'yiiassets\bootbox\BootBoxAsset',
    ];
}