Wolframcheg / yii2-minify-view

Yii2 View component with minification css & js

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Yii 2 Minify View Component

The main feature of this component - concatenate and compress files connected through "AssetBundle".

License Latest Stable Version Latest Unstable Version Total Downloads

Code Status

Scrutinizer Code Quality Code Coverage Travis CI Build Status Dependency Status

Support

GutHub issues or public chat.

Installation

composer require "rmrevin/yii2-minify-view:~1.9"

Configure

<?
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
		]
	]
];

About

Yii2 View component with minification css & js

License:MIT License


Languages

Language:PHP 97.3%Language:CSS 2.3%Language:JavaScript 0.4%