Download the PHP package bradcrumb/lesscompiler without Composer

On this page you can find all versions of the php package bradcrumb/lesscompiler. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package lesscompiler

LessCompiler

LessCompiler is a CakePHP LESS component to (automatically) compile less-files (http://lesscss.org/) by using less.php (https://github.com/oyejorge/less.php).

Requirements

The master branch has the following requirements:

Installation

Documentation

The component will check for less-files to (re)compile automatically when:

In a live environment one can force the component to (re)compile all less-files by supplying forceLessToCompile=true in the request string.

The component writes cache-files to your CakePHP's cache-directory in a subdirectory called "LessComponent". All less-files should be placed in the app/less directory (to generate css-files in the default webroot/css directory). Less-files for the plugin and themes should be stored in app/Plugin/{pluginname}/less or app/View/Themed/{themename/less.

The default duration time for the cache is 4 hours. After that time the cache expires and after a new request the component will check for updated or added less-files.

Possible Component Settings

public $components = array(
    'LessCompiler.less'     => array(
        'sourceFolder'      => 'less',          // Where to look for LESS files, (From the APP directory)
        'targetFolder'      => false,           // Where to put the generated css (From the webroot directory)
        'formatter'         => 'compressed',    // lessphp compatible formatter
        'variables'         => array(),         // Pass variables from php to LESS
        'forceCompiling'    => false,           // Always recompile
        'autoRun'           => false,           // Check if compilation is necessary, this ignores the CakePHP Debug setting
        'sourceMap'         => false            // Generate sourcemap
    )
);

License

GNU General Public License, version 3 (GPL-3.0) http://opensource.org/licenses/GPL-3.0


All versions of lesscompiler with dependencies

PHP Build Version
Package Version
Requires php Version >=5.3.0
composer/installers Version *
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package bradcrumb/lesscompiler contains the following files

Loading the files please wait ....