singrana/yii2-movetop

Yii2 movetop widget

Installs: 87

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 1

Open Issues: 0

Type:yii2-extension

dev-master 2014-07-26 17:45 UTC

This package is not auto-updated.

Last update: 2020-01-06 03:06:27 UTC


README

Yii2 less support

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require --prefer-dist singrana/yii2-less "*"

or add

"singrana/yii2-less": "*"

to the require section of your composer.json file.

Usage

Add or modify your Yii2 application config

'components'    =>
[
	'assetManager'					=>
	[
		'converter'					=>
		[
			'class'					=>	'singrana\assets\Converter',
		],
	...
	],
	...
];

after this, you can usage in you bundles, for example:


	public $css =
	[
		'css/style.less',
	];