| Package Data | |
|---|---|
| Maintainer Username: | maka |
| Maintainer Contact: | 54.maka@gmail.com (maka) |
| Package Create Date: | 2015-01-23 |
| Package Last Update: | 2015-02-07 |
| Language: | PHP |
| License: | MIT |
| Last Refreshed: | 2025-11-02 15:17:42 |
| Package Statistics | |
|---|---|
| Total Downloads: | 42 |
| Monthly Downloads: | 0 |
| Daily Downloads: | 0 |
| Total Stars: | 0 |
| Total Watchers: | 1 |
| Total Forks: | 0 |
| Total Open Issues: | 0 |
This is an alternative issue to use oyejorge/less.php instead of leafo/lessphp with this package jtgrimes/less4laravel https://github.com/jtgrimes/less4laravel
Usage is same
All Changes here :
Add maka\less4laravel as a requirement to composer.json:
{
"require": {
"Maka/less4laravel": "dev-master"
}
}
Update your packages with composer update or install with composer install.
Once Composer has installed or updated your packages you need to register
Less4Laravel with Laravel itself. Open up app/config/app.php and
find the providers key towards the bottom and add:
'Maka\Less4laravel\LessServiceProvider'
In the aliases section, add:
'Less' => 'Maka\Less4laravel\LessFacade'
In order to work with the configuration file, you're best off publishing a copy with Artisan:
$ php artisan config:publish maka/less4laravel