2017 © Pedro Peláez
 

library laravel5-lessphp

Bringing lessphp into Laravel

image

kimcastle/laravel5-lessphp

Bringing lessphp into Laravel

  • Tuesday, June 20, 2017
  • by kimcastle
  • Repository
  • 1 Watchers
  • 0 Stars
  • 18 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 3 Open issues
  • 8 Versions
  • 0 % Grown

The README.md

laravel5-lessphp

lessphp is a compiler for LESS by PHP, (*1)

(1) First, pull in the package through Composer., (*2)

"require": {
    "kimcastle/laravel5-lessphp": "1.0.0"
}

(2) And then, if using Laravel 5, include the service provider within config/app.php., (*3)

'providers' => [
    "Kimcastle\Laravel5Less\LessServiceProvider::class"
];

In the aliases section, add:, (*4)

'Less' => Kimcastle\Laravel5Less\Facades\Less::class

(3) Uage, (*5)

Within your models or controllers, you can perform modification to the outputted CSS. Here are some examples:, (*6)

use Kimcastle\Laravel5Less\Facades\Less;

class TestController extend Controller
{
     public function less()
     {
          Less::modifyVars(['@externalBgColor' => 'red'])->compile('less_test');

          Less::modifyVars(['@externalBgColor' => '#ff0001'])->url('less_test', true);
     }
}

OK!, (*7)

The Versions

20/06 2017

1.1.3.x-dev

1.1.3.9999999-dev

Bringing lessphp into Laravel

  Sources   Download

MIT

The Requires

 

by Avatar kimcastle

laravel php less

20/06 2017

1.1.3

1.1.3.0

Bringing lessphp into Laravel

  Sources   Download

MIT

The Requires

 

by Avatar kimcastle

laravel php less

20/06 2017

1.1.2.x-dev

1.1.2.9999999-dev

Bringing lessphp into Laravel

  Sources   Download

MIT

The Requires

 

by Avatar kimcastle

laravel php less

20/06 2017

1.1.2

1.1.2.0

Bringing lessphp into Laravel

  Sources   Download

MIT

The Requires

 

by Avatar kimcastle

laravel php less

20/06 2017

dev-master

9999999-dev

Bringing lessphp into Laravel

  Sources   Download

MIT

The Requires

 

by Avatar kimcastle

laravel php less

20/06 2017

0.1.x-dev

0.1.9999999.9999999-dev

Bringing lessphp into Laravel

  Sources   Download

MIT

The Requires

 

by Avatar kimcastle

laravel php less

20/06 2017

0.1.0

0.1.0.0

Bringing lessphp into Laravel

  Sources   Download

MIT

The Requires

 

by Avatar kimcastle

laravel php less

20/06 2017

1.0.0

1.0.0.0

Bringing lessphp into Laravel

  Sources   Download

MIT

The Requires

 

by Avatar kimcastle

laravel php less