8ctopus/lumen-9-maintenance-mode

Define application maintenance mode.

1.3.0 2022-03-21 06:13 UTC

This package is auto-updated.

Last update: 2024-04-21 10:54:12 UTC


README

Build Status Latest Stable Version Total Downloads License

php 8.0.2 Lumen 9.x

How to install

composer require 8ctopus/lumen-9-maintenance-mode

How to configure

Add this to your AppServiceProvider or in bootstrap/app.php

$app->register(\oct8pus\MaintenanceMode\Providers\MaintenanceModeServiceProvider::class);

Add the up and down commands in app/console/Kernel.php

protected $commands = [
    \oct8pus\MaintenanceMode\Console\Commands\DownCommand::class,
    \oct8pus\MaintenanceMode\Console\Commands\UpCommand::class
];

Maintenance Mode on

php artisan down

Maintenance Mode off

    php artisan up

IP based access

Currently only ipv4 and no ip ranges

Add ALLOWED_IPS in your .env file

ALLOWED_IPS=192.168.1.2,127.0.0.1,136.22.16.0

Features planned:

  • IP Ranges
  • Dynamic DNS IP Filtering