wdteam / yii2-asset-todc-bootstrap
Yii2 asset for bower todc-bootstrap
Installs: 11
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 6
Forks: 0
Open Issues: 0
Type:yii2-extension
Requires
- todc/todc-bootstrap: ^3.0
- yiisoft/yii2: *
This package is auto-updated.
Last update: 2025-01-15 19:38:56 UTC
README
Yii2 asset for bower todc-bootstrap
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist wdteam/yii2-asset-todc-bootstrap "*"
or add
"wdteam/yii2-asset-todc-bootstrap": "*"
to the require section of your composer.json
file.
Usage
Once the extension is installed, simply use it in your code by :
class AppAsset extends AssetBundle { public $basePath = '@webroot'; public $baseUrl = '@web'; public $css = [ 'css/site.css', ]; public $js = [ ]; public $depends = [ 'yii\web\YiiAsset', 'yii\bootstrap\BootstrapAsset', 'wdteam\todcbootstrap\TodcbootstrapAsset', ]; }```