<?php
/**
* @link https://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license https://www.yiiframework.com/license/
*/
namespace yii\bootstrap4;
use yii\web\AssetBundle;
/**
* Asset bundle for the Twitter bootstrap javascript files.
*
* @author Qiang Xue <qiang.xue@gmail.com>
*/
class BootstrapPluginAsset extends AssetBundle
{
public $sourcePath = '@npm/bootstrap/dist';
public $js = [
'js/bootstrap.bundle.js',
];
public $depends = [
'yii\web\JqueryAsset',
'yii\bootstrap4\BootstrapAsset',
];
}