shopping24 / css-beautifier
Make your CSS great again
Package info
github.com/shopping24/css-beautifier
Language:CSS
pkg:composer/shopping24/css-beautifier
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: 2026-03-26 22:20:20 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); } }