epsoftware / minyfy
Php Code to minyfy html, css and js
1.0.0
2017-01-24 13:24 UTC
Requires
- php: >=5.5.0
This package is not auto-updated.
Last update: 2024-11-18 15:54:56 UTC
README
- PHP CODE to minyfy files.
- Based https://codegists.com/snippet/php/php-html-css-js-minifierphp_tovic_php
Install Instructions
composer install epsoftware/minyfy or put in composer.json
epsoftware/minyfy
:^1.0
How to use
namespace Acme;
use Epsoftware\Minyfy\Minyfy;
SomeClass {
public function dosomething() {
$str_minyfy = Minyfy::html($string);
}
}