Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/everzet/sflessphpplugin

LESS in symfony
https://github.com/everzet/sflessphpplugin

Last synced: 24 days ago
JSON representation

LESS in symfony

Awesome Lists containing this project

README

        

sfLessPhpPlugin
====

*LESS in symfony.*

sfLessPhpPlugin is a plugin for symfony applications. It automatically parses your applications `.less` files through LESS and outputs CSS files.

In details, sfLessPhpPlugin does the following:

* Recursively looks for LESS (`.less`) files in `data/stylesheets`
* Ignores partials (prefixed with underscore: `_partial.less`) - these can be included with `@import` in your LESS files
* Saves the resulting CSS files to `web/css` using the same directory structure as `data/stylesheets`

LESS
----

LESS extends CSS with: variables, mixins, operations and nested rules. For more information, see [http://lesscss.org](http://lesscss.org).

Installation
============

Using symfony plugin:install
-----------------------------------

Use this to install sfLessPhpPlugin:

$ symfony plugin:install sfLessPhpPlugin

Using git clone
-----------------------------------

Use this to install as a plugin in a symfony app:

$ cd plugins && git clone git://github.com/everzet/sfLessPhpPlugin.git

Using git submodules
-----------------------------------

Use this if you prefer to use git submodules for plugins:

$ git submodule add git://github.com/everzet/sfLessPhpPlugin.git plugins/sfLessPhpPlugin
$ git submodule init
$ git submodule update

Usage
=====

After installation, you need to create directory `data/stylesheets`. Any LESS file placed in this directory, including subdirectories, will
automatically be parsed through LESS and saved as a corresponding CSS file in `web/css`. Example:

data/stylesheets/clients/screen.less => web/css/clients/screen.css

If you prefix a file with an underscore, it is considered to be a partial, and will not be parsed unless included in another file. Example:


@text_dark: #222;


@import "partials/_form";

input { color: @text_dark; }

The example above will result in a single CSS file in `web/css/clients/screen.css`.

Configuration
=============

To set the source path (the location of your project LESS files), add in apps/APP/config/app.yml:

all:
sf_less_php_plugin:
path: "/path/to/less/files"

sfLessPhpPlugin rechecks data/stylesheets/*.less at every routes init. To prevent this, add this in your apps/APP/config/app.yml:

prod:
sf_less_php_plugin:
compile: false

sfLessPhpPlugin checks the dates of LESS & CSS files, and will compile again only if LESS file have been changed since last parsing. To prevent this check & to enforce everytime compiling, add this in your apps/APP/config/app.yml:

dev:
sf_less_php_plugin:
check_dates: false

By default, sfLessPhpPlugin uses lessphp library to compile your LESS files. But you can force plugin to use original Ruby lessc compiler (if you have installed LESS gem):

all:
sf_less_php_plugin:
use_lessc: true

And of course, if you use Mac OS & Ruby lessc compiler, you can set it to use Growl notifications with:

all:
sf_less_php_plugin:
use_growl: true

In 1.3.2 version Web Debug Panel was added, from which you can view all styles to compile & can open them for edit in prefered editor. For that you need to configure sf_file_link_format in settings.yml.

Last but not least, you can enable CSS compression (remove of whitespaces, tabs & newlines) by:

all:
sf_less_php_plugin:
use_compression: true

Tasks
=====

sfLessPhpPlugin provides a set of CLI tasks to help manage your CSS files.

To parse all LESS files and save the resulting CSS files to the destination path, run:

$ symfony less:compile

To delete all compiled CSS (only files, that been compiled from LESS files) files before parsing LESS, run:

$ symfony less:compile --clean

If you want to use lessc parser instead of default lessphp, run:

$ symfony less:compile --lessc

If you want to compress CSS files after compilation, run:

$ symfony less:compile --compress

Also, by default tasks don't use settings from app.yml such as "path". But you can specify application option to tell compiler from which app to get config:

$ symfony less:compile --application=frontend

If you want to compile specific file, not all, just use argument & file name without ".less". To compile style.less into style.css, just run:

$ symfony less:compile style

Git
===

If you are using git to version control your code and LESS for all your stylesheets, you can add this entry to your `.gitignore` file:

web/css/*.css

Contributors
============

* everzet (lead): [http://github.com/everzet](http://github.com/everzet)
* tonio: [http://github.com/tonio](http://github.com/tonio)

sfLessPhpPlugin is based on lessphp by leafo ([http://github.com/leafo](http://github.com/leafo))

LESS is maintained by Alexis Sellier [http://github.com/cloudhead](http://github.com/cloudhead)