PHP code example of open-southeners / laravel-vapor-response-compression

1. Go to this page and download the library: Download open-southeners/laravel-vapor-response-compression 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/ */

    

open-southeners / laravel-vapor-response-compression example snippets


/**
 * The application's global HTTP middleware stack.
 *
 * These middleware are run during every request to your application.
 *
 * @var array<string, array<int, class-string|string>>
 */
protected $middleware = [
    // ...
    \OpenSoutheners\LaravelResponseCompression\ResponseCompression::class,
];
bash
php artisan vendor:publish --tag=response-compression
bash
php artisan vendor:publish --tag=response-compression
Dockerfile
# FROM laravelphp/vapor:php84

RUN pecl install brotli \
    && docker-php-ext-enable brotli \

# COPY . /var/task
Dockerfile
# FROM laravelphp/vapor:php84

RUN pecl install zstd  \
    && docker-php-ext-enable zstd \

# COPY . /var/task
sh
sudo add-apt-repository ppa:ondrej/php
sudo apt update
sudo apt install php-lz4