christianklisch / slim-minify
Minify html output in slim framework
0.7.0
2021-06-07 15:04 UTC
Requires
- php: >=7.2.0
- slim/slim: >=4.0.0
Requires (Dev)
None
Suggests
None
Provides
None
Conflicts
None
Replaces
None
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
- Christian Klisch https://www.christian-klisch.de
Copyright and license
Copyright 2014 released under MIT license.