krbv/minifyit is a Laravel package.
It currently has 0 GitHub stars and 27 downloads on Packagist (latest version v0.1.5).
Install it with composer require krbv/minifyit.
Discover more Laravel packages by krbv
or browse all Laravel packages to compare alternatives.
Last updated
composer require krbv/minifyit
or
"require": {
"krbv/minifyit": "0.1.*"
}
config/app.php
'providers' => [
Krbv\Minifyit\MinifyitServiceProvider::class
];
$this->minifyit = \App::make('minifyit');
$this->minifyit->setCSS(
['/css/style.css','/css/form.css'], // will be merged in one new file.
'/css/single.css'
);
$this->minifyit->setJS( \* the same *\ );
CSS is going to appear before " " JS before "
"
php artisan vendor:publish
Config: /config/minifyit.php Views: /view/vendor/minifyit/css.html /view/vendor/minifyit/js.html