AB
abordage/html-min
HtmlMin is very simple (and very fast) PHP package for minification HTML
HtmlMin: PHP package for HTML minification
Very simple (and very fast) html compression. See benchmark and comparison
Features
- Removing extra whitespaces
- Removing html comments
- Removing trailing slashes from void elements (HTML5)
- Skip
textarea,preandscriptelements - Compresses in microseconds. See benchmark and comparison
Requirements
- PHP 7.4 or higher
Installation
You can install the package via composer:
composer require abordage/html-minQuick start
<?php
require __DIR__ . '/vendor/autoload.php';
$htmlMin = new Abordage\HtmlMin\HtmlMin();
$result = $htmlMin->minify("<!DOCTYPE html><html> ... </html>");Options
$htmlMin->findDoctypeInDocument(); // default: true
$htmlMin->removeWhitespaceBetweenTags(); // default: true
$htmlMin->removeBlankLinesInScriptElements(); // default: false
$htmlMin->removeTrailingSlashes(); // default: falseRemove trailing slashes
In HTML5, void elements (<link>, <meta>, <img>, <br>, etc.) should not have trailing slashes.
Enable this option to convert XHTML-style tags like <link ... /> to HTML5-style <link ...>.
$htmlMin->removeTrailingSlashes();
$result = $htmlMin->minify('<link rel="stylesheet" href="style.css" />');
// Result: <link rel="stylesheet" href="style.css">Benchmark
See abordage/html-min-benchmark
Testing
composer test:allor
composer test:phpunit
composer test:phpstan
composer test:phpcsfor see https://github.com/abordage/html-min/actions/workflows/tests.yml
Feedback
If you have any feedback, comments or suggestions, please feel free to open an issue within this repository.
Contributing
Please see CONTRIBUTING for details.
Credits
License
The MIT License (MIT). Please see License File for more information.
On this page
MIT License
Created June 12, 2022
Updated January 23, 2026
