shopping24/css-beautifier

Make your CSS great again

Installs: 15 814

Dependents: 0

Suggesters: 0

Security: 0

Stars: 4

Watchers: 28

Forks: 1

Open Issues: 3

Language:CSS

1.0.0 2019-02-20 13:04 UTC

README

Build Status

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);        
        }
    }