epsoftware / minyfy
Php Code to minyfy html, css and js
Installs: 258
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
pkg:composer/epsoftware/minyfy
Requires
- php: >=5.5.0
This package is not auto-updated.
Last update: 2025-10-06 19:59:16 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);
}
}