1. Go to this page and download the library: Download open20/yii2-less.php library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
open20 / yii2-less.php example snippets
$config = [
...
'components' => [
...
'assetManager' => [
...
'converter' => [
'class' => 'cakebake\lessphp\AssetConverter',
'compress' => true, // Optional: You can tell less.php to remove comments and whitespace to generate minimized css files.
'useCache' => true, // Optional: less.php will save serialized parser data for each .less file. Faster, but more memory-intense.
//'cacheDir' => null, // Optional: is passed to the SetCacheDir() method. By default "cakebake\lessphp\runtime" is used.
'cacheSuffix' => true, // Optional: Filename suffix to avoid the browser cache and force recompiling by configuration changes
],
...
],
...
],
...
];
class AppAsset extends AssetBundle
{
public $basePath = '@webroot';
public $baseUrl = '@web';
public $css = [
'css/site.less',
];
public $js = [
];
public $depends = [
];
}
php composer.phar
"cakebake/yii2-less.php": "*"
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.