rafie / cssminifier
There is no license information available for the latest version (v1.0) of this package.
Simple css minifier for Laravel
v1.0
2014-05-03 11:09 UTC
Requires
- php: >=5.4.0
- illuminate/support: 4.1.*
This package is auto-updated.
Last update: 2026-03-01 00:09:25 UTC
README
Simple css minifier based on GarryJones css minifer.
##Installation
In your composer.json file, require rafie/Cssminifier and run composer dumpautoload.
After the download has finished, in your app/config/app.php you need to:
- Add
Rafie\Cssminifier\CssminifierServiceProviderto theprovidersarray. - Add
'CssMin' => 'Rafie\Cssminifier\Facades\CssMin'to thealiasesarray. ( only if you want to use the static interfaceCssMin::minify(...))
##Usage
//through the Ioc
$cssmin = App::make("cssmin");
$cssmin->minify(
[
'path/to/file1.css',
'path/to/file2.css'
],
'output/path',
true,// (optional) remove comments or no
false // (optional) concat the resulted files into one file 'all.min.css'
);
//Through the Facade
CssMin::minify(
[
'path/to/file1.css',
'path/to/file2.css'
],
'output/path',
true,// (optional) remove comments or no
false // (optional) concat the resulted files into one file 'all.min.css'
);
##TODO write tests