dev-master
9999999-devYii2 View component with minification css & js
MIT
The Requires
by Safronov Sergey
css yii2 js view minify
Yii2 View component with minification css & js
The preferred way to install this extension is through composer., (*1)
Either run, (*2)
php composer.phar require --prefer-dist appmake/yii2-minify-view "*"
or add, (*3)
"appmake/yii2-minify-view": "*"
<? return [ // ... 'components' => [ // ... 'view' => [ 'class' => '\rmrevin\yii\minify\View', 'enableMinify' => !YII_DEBUG, 'web_path' => '@web', // path alias to web base 'base_path' => '@webroot', // path alias to web base 'minify_path' => '@webroot/minify', // path alias to save minify result 'js_position' => [ \yii\web\View::POS_END ], // positions of js files to be minified 'force_charset' => 'UTF-8', // charset forcibly assign, otherwise will use all of the files found charset 'expand_imports' => true, // whether to change @import on content 'compress_output' => true, // compress result html page ] ] ];
Yii2 View component with minification css & js
MIT
css yii2 js view minify