christianklisch/slim-minify

Minify html output in slim framework

0.7.0 2021-06-07 15:04 UTC

This package is auto-updated.

Last update: 2024-04-07 21:09:23 UTC


README

Slim middleware to minify HTML output generated by the slim PHP framework. It removes whitespaces, empty lines, tabs beetween html-tags and comments to reduce traffic. This script is a summary of stackoverflow answers.

Requirements

  • PHP Version >= 7.2
  • Slim Version >= 4.0

Usage

Copy the file Minify.php to 'Slim/Middleware/'. Register minify via $app->add():

or use the composer:

    "require": {
        "christianklisch/slim-minify": "0.7.0"
    }

in 'src/middleware.php':

$app->add(new \Slim\Middleware\Minify() );

to deactivate minified output:

$app->add(new \Slim\Middleware\Minify(false);

Contributors

Copyright and license

Copyright 2014 released under MIT license.