PHP code example of yyqsg888 / laravel-minifier

1. Go to this page and download the library: Download yyqsg888/laravel-minifier library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

yyqsg888 / laravel-minifier example snippets


protected $middleware = [
    ....
    // Middleware to minify CSS
    \LaravelMinifier\Minify\Middleware\MinifyCss::class,
    // Middleware to minify Javascript
    \LaravelMinifier\Minify\Middleware\MinifyJavascript::class,
    // Middleware to minify Blade
    \LaravelMinifier\Minify\Middleware\MinifyHtml::class,
];

"enabled" => env("MINIFY_ENABLED", true),

"assets_enabled" => env("MINIFY_ASSETS_ENABLED", true),

"insert_semicolon" => [
    'css' => env("MINIFY_CSS_SEMICOLON", true),
    'js' => env("MINIFY_JS_SEMICOLON", true),
],

return view('welcome', ['ignore_minify' => true]);

"ignore" => [
    '/admin'
],
sh
php artisan vendor:publish --provider="LaravelMinifier\Minify\MinifyServiceProvider"