2017 © Pedro Peláez
 

library php-yui-compressor

A modern PHP wrapper for the YUI compressor

image

jalle19/php-yui-compressor

A modern PHP wrapper for the YUI compressor

  • Tuesday, June 3, 2014
  • by Jalle19
  • Repository
  • 1 Watchers
  • 4 Stars
  • 55,307 Installations
  • PHP
  • 4 Dependents
  • 0 Suggesters
  • 1 Forks
  • 1 Open issues
  • 3 Versions
  • 39 % Grown

The README.md

php-yui-compressor

A modern PHP wrapper for the YUI compressor., (*1)

Installation

Run composer install (install Composer if you haven't done so already). You will also need to have Java installed and available in your path (on Debian/Ubuntu-based systems you can install it using sudo apt-get install default-jre), (*2)

Usage

The following snippet assumes you've included the Composer-generated autoloader., (*3)

<?php

$yui = new \YUI\Compressor();

// Read the uncompressed contents
$css = file_get_contents('styles.css');
$script = file_get_contents('script.js');

// Compress the CSS
$yui->setType(\YUI\Compressor::TYPE_CSS);
$optimizedCss = $yui->compress($css);

// Compress the JavaScript
$yui->setType(\YUI\Compressor::TYPE_JS);
$optimizedScript = $yui->compress($script);
<?php

// javaPath defauls to "java" which means it has to be in the path. If that's 
// not the case we can override it like this.
$yui = new \YUI\Compressor(array(
    'javaPath'=>'/usr/bin/java',
    'line-break'=>80,
    'disable-optimizations'=>true,
));

// Read the uncompressed contents
$css = file_get_contents('styles.css');
$script = file_get_contents('script.js');

// The "disable-optimizations" option is JavaScript-specific so it won't apply 
// here...
$yui->setType(\YUI\Compressor::TYPE_CSS);
$optimizedCss = $yui->compress($css);

// ...but here it will
$yui->setType(\YUI\Compressor::TYPE_JS);
$optimizedScript = $yui->compress($script);

Credits

Inspired by the work of gpbmike (https://github.com/gpbmike/PHP-YUI-Compressor), (*4)

The Versions

03/06 2014

dev-master

9999999-dev https://github.com/Jalle19/php-yui-compressor

A modern PHP wrapper for the YUI compressor

  Sources   Download

BSD-2-Clause

The Requires

 

css js minify yui

03/06 2014

1.0.1

1.0.1.0 https://github.com/Jalle19/php-yui-compressor

A modern PHP wrapper for the YUI compressor

  Sources   Download

BSD-2-Clause

The Requires

 

css js minify yui

09/07 2013

1.0.0

1.0.0.0 https://github.com/Jalle19/php-yui-compressor

A modern PHP wrapper for the YUI compressor

  Sources   Download

BSD-2-Clause

The Requires

 

css js minify yui