9d3b84517a
* Compatible with PHP 8.1 and Codeception 5 * Add PHP 8.1 to workflow * PHP 7.4 as a minimum * Updated dependencies Co-authored-by: Luke English <luke.english@ec2i.biz>
32 lines
583 B
PHP
32 lines
583 B
PHP
<?php
|
|
/**
|
|
* @link http://www.yiiframework.com/
|
|
* @copyright Copyright (c) 2008 Yii Software LLC
|
|
* @license http://www.yiiframework.com/license/
|
|
*/
|
|
|
|
namespace app\assets;
|
|
|
|
use yii\web\AssetBundle;
|
|
|
|
/**
|
|
* Main application asset bundle.
|
|
*
|
|
* @author Qiang Xue <qiang.xue@gmail.com>
|
|
* @since 2.0
|
|
*/
|
|
class AppAsset extends AssetBundle
|
|
{
|
|
public $basePath = '@webroot';
|
|
public $baseUrl = '@web';
|
|
public $css = [
|
|
'css/site.css',
|
|
];
|
|
public $js = [
|
|
];
|
|
public $depends = [
|
|
'yii\web\YiiAsset',
|
|
'yii\bootstrap5\BootstrapAsset'
|
|
];
|
|
}
|