├── LICENSE ├── README.md ├── bin └── pcsstidy ├── class.csstidy.php ├── class.csstidy_optimise.php ├── class.csstidy_print.php ├── composer.json ├── css_optimiser.php ├── cssparse.css ├── cssparsed.css ├── data.inc.php ├── lang.inc.php ├── phpstan-baseline.neon ├── template.tpl ├── template1.tpl ├── template2.tpl └── template3.tpl /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cerdic/CSSTidy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cerdic/CSSTidy/HEAD/README.md -------------------------------------------------------------------------------- /bin/pcsstidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cerdic/CSSTidy/HEAD/bin/pcsstidy -------------------------------------------------------------------------------- /class.csstidy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cerdic/CSSTidy/HEAD/class.csstidy.php -------------------------------------------------------------------------------- /class.csstidy_optimise.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cerdic/CSSTidy/HEAD/class.csstidy_optimise.php -------------------------------------------------------------------------------- /class.csstidy_print.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cerdic/CSSTidy/HEAD/class.csstidy_print.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cerdic/CSSTidy/HEAD/composer.json -------------------------------------------------------------------------------- /css_optimiser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cerdic/CSSTidy/HEAD/css_optimiser.php -------------------------------------------------------------------------------- /cssparse.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cerdic/CSSTidy/HEAD/cssparse.css -------------------------------------------------------------------------------- /cssparsed.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cerdic/CSSTidy/HEAD/cssparsed.css -------------------------------------------------------------------------------- /data.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cerdic/CSSTidy/HEAD/data.inc.php -------------------------------------------------------------------------------- /lang.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cerdic/CSSTidy/HEAD/lang.inc.php -------------------------------------------------------------------------------- /phpstan-baseline.neon: -------------------------------------------------------------------------------- 1 | parameters: 2 | ignoreErrors: [] 3 | -------------------------------------------------------------------------------- /template.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cerdic/CSSTidy/HEAD/template.tpl -------------------------------------------------------------------------------- /template1.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cerdic/CSSTidy/HEAD/template1.tpl -------------------------------------------------------------------------------- /template2.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cerdic/CSSTidy/HEAD/template2.tpl -------------------------------------------------------------------------------- /template3.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cerdic/CSSTidy/HEAD/template3.tpl --------------------------------------------------------------------------------