1
0
mirror of https://github.com/mrclay/minify.git synced 2025-08-11 00:24:11 +02:00

Prep for 2.0 release. Moved JSMin to lib/. Removed Packer and tests, left only wrapper class w/ instructions.

This commit is contained in:
Steve Clay
2008-05-22 15:03:05 +00:00
parent db91905934
commit ae22377b26
11 changed files with 39 additions and 823 deletions

View File

@@ -1,11 +1,18 @@
<?php
/**
* Class Minify_Packer
*
* To use this class you must first download the PHP port of Packer
* and place the file "class.JavaScriptPacker.php" in /lib.
* @link http://joliclic.free.fr/php/javascript-packer/en/
*
* Be aware that, as long as HTTP encoding is used, scripts minified
* with JSMin will provide better client-side performance.
*
* @package Minify
*/
require dirname(__FILE__) . '/3rd_party/packer.php';
require 'class.JavaScriptPacker.php';
/**
* Minify Javascript using Dean Edward's Packer