2017 © Pedro Peláez
 

library minify

Package for minify and optimize HTML code

image

gulch/minify

Package for minify and optimize HTML code

  • Saturday, February 17, 2018
  • by gulch
  • Repository
  • 1 Watchers
  • 2 Stars
  • 19 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 5 Versions
  • 0 % Grown

The README.md

Coverage Status Scrutinizer Code Quality, (*1)

gulch/Minify

PHP Package for minify HTML code., (*2)

Special Thanks: Funtime Team., (*3)

Install

You will need Composer installed., (*4)

composer require gulch/minify

How to use

$minifier = gulch\Minify\Minifier::createDefault();
// default optimizations are: whitespaces remove, html comments remove, minification of css and js code
// above code is equivalent to:
// $minifier = new gulch\Minify\Minifier(
//     new gulch\Minify\Processor\WhitespacesRemover,
//     new gulch\Minify\Processor\HtmlCommentsRemover,
//     new gulch\Minify\Processor\InlineCssMinifier,
//     new gulch\Minify\Processor\InlineJavascriptMinifier,
// );
$minified_code = $minifier->process($code);

Advanced optimizations

$minifier = new gulch\Minify\Minifier(
    new gulch\Minify\Processor\WhitespacesRemover,
    new gulch\Minify\Processor\HtmlCommentsRemover,
    new gulch\Minify\Processor\InlineCssMinifier,
    new gulch\Minify\Processor\InlineJavascriptMinifier,
    new gulch\Minify\Processor\AttributesSimplifier,
    new gulch\Minify\Processor\AttributeQuotesRemover,
);
$minified_code = $minifier->process($code);

The Versions

17/02 2018

dev-master

9999999-dev

Package for minify and optimize HTML code

  Sources   Download

MIT

The Requires

  • php ^7.1

 

The Development Requires

css php javascript html performance html5 minify optimization script pagespeed stylesheets webperf wpo

17/02 2018

1.0.2

1.0.2.0

Package for minify and optimize HTML code

  Sources   Download

MIT

The Requires

  • php ^7.1

 

The Development Requires

css php javascript html performance html5 minify optimization script pagespeed stylesheets webperf wpo

29/01 2018

1.0.1

1.0.1.0

Package for minify and optimize HTML code

  Sources   Download

MIT

The Requires

  • php ^7.1

 

The Development Requires

css php javascript html performance html5 minify optimization script pagespeed stylesheets webperf wpo

12/01 2018

1.0.0

1.0.0.0

Package for minify and optimize HTML code

  Sources   Download

MIT

The Requires

  • php >=7.1

 

The Development Requires

css php javascript html performance html5 minify optimization script pagespeed stylesheets webperf wpo

16/11 2017

v0.1

0.1.0.0

Package for minify and optimize HTML code

  Sources   Download

MIT

The Requires

  • php >=7.1

 

The Development Requires