PHP code example of danbettles / yacm
1. Go to this page and download the library: Download danbettles/yacm library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
danbettles / yacm example snippets
use Danbettles\Yacm\Minifier as CssMinifier;
//@todo Load the library.
$minifiedCss = CssMinifier::minifyNow('body { font-size: 1em; }');
//Or
$cssMinifier = new CssMinifier();
$minifiedCss = $cssMinifier->minify('body { font-size: 1em; }');
//@todo Create bundle as per Dots United's instructions.
$minifyCssFilter = new \DotsUnited\BundleFu\Filter\CallbackFilter(function($content) {
return \Danbettles\Yacm\Minifier::minifyNow($content);
});
$bundle->setCssFilter($minifyCssFilter);
//@todo Continue using bundle as per Dots United's instructions.