lesserphp icon indicating copy to clipboard operation
lesserphp copied to clipboard

LESS compiler written in PHP

Results 7 lesserphp issues
Sort by recently updated
recently updated
newest added

``` PHP Deprecated: preg_match(): Passing null to parameter #4 ($flags) of type int is deprecated in./lessc.inc.php on line 3739 ``` Replacing `null` with `0` should do the trick. https://github.com/MarcusSchwarz/lesserphp/blob/68db44f0574d298472d2367ecef80433d080e7cb/lessc.inc.php#L3739

Hi @MarcusSchwarz what is the status of this project? There are a few open pull requests with no response and I notice that there has not been a new release...

Hey, thank you for maintaining lesserphp :-) However, there seems to be a regression: Recursive mixins are now broken. An example that works in the original leafo/lessphp, but is broken...

bug

Could it be that lessify will be back in business? Was https://github.com/leafo/lessphp/issues/109

feature request

There have already been a few issues on the original repo e.g. https://github.com/leafo/lessphp/issues/8 - is there any chance to get a basic "debug" option in this fork to see the...

I can see in the documentation that you can register custom functions: ``` $less->registerFunction("double", function($arg) { list($type, $value, $unit) = $arg; return array($type, $value*2, $unit); }); ``` Awesome! What I...

It seems to me your repo is the most maintained, of all the Forks of the Original Repo. I have tested with your 5.1 release that results in the following...