raulfraile / jivaro

PHP library to minify CSS, JS and HTML

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Jivaro

Build Status Latest Stable Version Total Downloads Latest Unstable Version

Jivaro is a simple library to minify, combine and embed CSS and JavaScript files. It is written in PHP and does not have external dependencies.

<?php
$jivaro = new Jivaro\Compressor\Css();

echo $jivaro
    ->addFile(__DIR__ . '/files/test1.css')
    ->minify()
    ->getContents();

Credits

License

Jivaro is released under the MIT License. See the bundled LICENSE file for details.

About

PHP library to minify CSS, JS and HTML

License:MIT License


Languages

Language:PHP 61.8%Language:CSS 38.2%