abordage / html-min
Very simple (and very fast) PHP package for HTML minification
Installs: 34 982
Dependents: 2
Suggesters: 0
Security: 0
Stars: 5
Watchers: 1
Forks: 2
Open Issues: 1
Requires
- php: >=7.4
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.0
- phpstan/phpstan: ^1.0
- phpunit/phpunit: ^9.5
This package is auto-updated.
Last update: 2024-11-11 08:52:07 UTC
README
HtmlMin: PHP package for HTML minification
Very simple (and very fast) html compression. See benchmark and comparison
Features:
- Removing extra whitespaces
- Removing html comments
- Skip
textarea
,pre
andscript
elements - Compresses in microseconds. See benchmark and comparison
Requirements
- PHP 7.4 - 8.2
Installation
You can install the package via composer:
composer require abordage/html-min
Quick 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
Benchmark
See abordage/html-min-benchmark
Testing
composer test:all
or
composer test:phpunit composer test:phpstan composer test:phpcsf
or 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.