hexydec / cssdoc
A token based CSS Document parser and minifier written in PHP
Installs: 6 305
Dependents: 1
Suggesters: 0
Security: 0
Stars: 3
Watchers: 2
Forks: 2
Open Issues: 0
Requires
- php: >=8.0
- hexydec/tokenise: 1.0.1
Requires (Dev)
- phpunit/phpunit: 10.1.2
README
A tokeniser based CSS document parser and minifier, written in PHP.
Description
A CSS parser, primarily designed for minifying CSS documents.
The parser designed around a tokeniser to make the document processing more reliable than regex based minifiers, which are a bit blunt and can be problematic if they match patterns in the wrong places.
Usage
To minify a CSS document:
$doc = new \hexydec\css\cssdoc(); // load from a variable if ($doc->load($css) { // minify the document $doc->minify(); // compile back to CSS echo $doc->compile(); }
You can test out the minifier online at https://hexydec.com/apps/minify-css/, or run the supplied index.php file after installation.
Installation
The easiest way to get up and running is to use composer:
$ composer install hexydec/cssdoc
CSSdoc requires \hexydec\token\tokenise to run, which you can install manually if not using composer.
Documentation
Support
CSSdoc supports PHP version 8.0+.
Contributing
If you find an issue with CSSdoc, please create an issue in the tracker.
If you wish to fix an issues yourself, please fork the code, fix the issue, then create a pull request, and I will evaluate your submission.
Licence
The MIT License (MIT). Please see License File for more information.