Giter VIP home page Giter VIP logo

ds-silex-less-provider's Introduction

DS-Silex-Less service provider

Simple less php service provider for Silex that uses https://github.com/leafo/lessphp as parser.

Simply specify paths for your .less files and target .css and if your .less files are newer than final .css file, final .css will be regenerated

This project is a fork of FF-Silex-Less from https://github.com/darklow/ff-silex-less-provider

This version removes the ability to provide multiple .less source files and timestamp-based change detection.

This version adds a cache file setting and use of the lessphp cachedCompile feature for automatic detection of changes to imported .less files.

Installation

Create a composer.json in your projects root-directory:

{
    "require": {
        "dietrich-stein/ds-silex-less-provider": "*"
    }
}

and run:

curl -s http://getcomposer.org/installer | php
php composer.phar install

Register provider

You must specify three required parameters and one optional:

  • less.source - Path to .less file. Changes to any .less files included by @import will trigger recompilation.
  • less.target - Path to target .css file
  • less.cache - Path to cache file used by the lessphp cachedCompile() function
  • less.target_mode - Optionally you can specify file mode mask
<?php
use DS\ServiceProvider\LessServiceProvider;

// Register DS Silex Less service provider
$this->register(new LessServiceProvider(), array(
    'less.sources' => array(__DIR__.'/../../Resources/less/style.less'), // specify .less file
    'less.target' => __DIR__.'/../../web/css/style.css', // specify .css target file
    'less.cache' => __DIR__.'/../../web/css/style.cache', // specify cache file
    'less.target_mode' => 0775, // Optional
));

License

'DS-Silex-Less' is licensed under the MIT license.

ds-silex-less-provider's People

Contributors

darklow avatar dietrich-stein avatar mavimo avatar

Stargazers

Sean Huber avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.