PHP code example of shopping24 / css-beautifier

1. Go to this page and download the library: Download shopping24/css-beautifier library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

shopping24 / css-beautifier example snippets


    
    
    use Shopping24\CSSBeautifier;
    
    class Foo
    {
        public function doSomething()
        {
            $uglyCSS = "foo{foo:bar;}";
            
            $beautyCSS = CSSBeautifier::run($uglyCSS);        
        }
    }