38 lines
621 B
PHP
38 lines
621 B
PHP
<?php
|
|
/**
|
|
* @link https://www.yiiframework.com/
|
|
* @copyright Copyright (c) 2008 Yii Software LLC
|
|
* @license https://www.yiiframework.com/license/
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace yii\bootstrap5;
|
|
|
|
use yii\web\AssetBundle;
|
|
|
|
/**
|
|
* Twitter Bootstrap 5 JavaScript bundle.
|
|
*/
|
|
class BootstrapPluginAsset extends AssetBundle
|
|
{
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
public $sourcePath = '@bower/bootstrap';
|
|
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
public $js = [
|
|
'dist/js/bootstrap.bundle.js'
|
|
];
|
|
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
public $depends = [
|
|
'yii\bootstrap5\BootstrapAsset'
|
|
];
|
|
}
|