The CSSBeautifier make your uglified CSS great again!
- You need at least PHP 5.6.0
composer require shopping24/css-beautifier
<?php
use Shopping24\CSSBeautifier;
class Foo
{
public function doSomething()
{
$uglyCSS = "foo{foo:bar;}";
$beautyCSS = CSSBeautifier::run($uglyCSS);
}
}