shopping24/css-beautifier

Make your CSS great again

Installs: 19 900

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 7

Forks: 0

Language:CSS

1.0.0 2019-02-20 13:04 UTC

This package is not auto-updated.

Last update: 2025-07-03 18:58:11 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);        
        }
    }