Skip to content

Laravel minify response middleware that will filter all the spaces and make all the HTML tags in one line.

License

Notifications You must be signed in to change notification settings

risenohk/laravel-minify-response

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Laravel Minify Response

Latest Stable Version Total Downloads License

Laravel minify response middleware that will filter all the spaces and make all the HTML tags in one line.

Installation

Require this package with composer using the following command:

composer require riseno/laravel-minify-response

After updating composer, add the middleware to the middlewareGroups array in app/http/Kernel.php .

protected $middlewareGroups = [
    'web' => [
        \App\Http\Middleware\EncryptCookies::class,
        \Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse::class,
        \Illuminate\Session\Middleware\StartSession::class,
        \Illuminate\View\Middleware\ShareErrorsFromSession::class,
        \App\Http\Middleware\VerifyCsrfToken::class,
        \Riseno\MinifyResponse\MinifyResponseMiddleware::class,
    ],
    ...
];

License

The Laravel minify response middleware is open-sourced software licensed under the MIT license

About

Laravel minify response middleware that will filter all the spaces and make all the HTML tags in one line.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages