shopping24 / css-beautifier
Make your CSS great again
1.0.0
2019-02-20 13:04 UTC
Requires
- php: >=5.6.0
Requires (Dev)
- phpunit/phpunit: ^5.7
- squizlabs/php_codesniffer: 3.*
This package is not auto-updated.
Last update: 2025-07-03 18:58:11 UTC
README
CSSBeautifier
What is the CSSBeautifier?
The CSSBeautifier make your uglified CSS great again!
Requirements:
- You need at least PHP 5.6.0
Installation:
composer require shopping24/css-beautifier
Usage
<?php use Shopping24\CSSBeautifier; class Foo { public function doSomething() { $uglyCSS = "foo{foo:bar;}"; $beautyCSS = CSSBeautifier::run($uglyCSS); } }