hexydec/cssdoc

A token based CSS Document parser and minifier written in PHP

1.2.0 2023-12-18 08:44 UTC

This package is auto-updated.

Last update: 2024-03-21 22:22:48 UTC


README

A tokeniser based CSS document parser and minifier, written in PHP.

Licence Status: Stable Tests Status Code Coverage

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.