Download the PHP package digifactory/laravel-partial-down without Composer
On this page you can find all versions of the php package digifactory/laravel-partial-down. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download digifactory/laravel-partial-down
More information about digifactory/laravel-partial-down
Files in digifactory/laravel-partial-down
Package laravel-partial-down
Short Description Put specific parts of your application in maintenance mode using
License MIT
Homepage https://github.com/digifactory/laravel-partial-down
Informations about the package laravel-partial-down
Laravel Partial Down
This package provides a command to put a part of your application's routes in maintenance mode. This only affects your HTTP routes, so queues and scheduled tasks will run.
Installation
You can install the package via Composer:
Usage
You can define the parts you want to put in maintenance mode in your middlewares you use for a route or group:
Now you can use the artisan commands to put this part of your application in maintenance mode:
And partial-up
to bring it back online:
The partial-down
command has Laravel's down
command signature:
When a specific part is down and the IP is not allowed an MaintenanceModeException
will be thrown, by default Laravel handles this exception with a 503 response. You can customize this, please refer the Laravel documentation for more information.
List used parts
In large applications it can be cumbersome to find all used application parts. You can use the php artisan partial-parts
command to view all used parts:
php artisan partial-parts
~~~
+--------------+
| Parts in use |
+--------------+
| backend |
| frontend |
+--------------+
~~~
Testing
Changelog
Please see CHANGELOG for more information what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
Credits
- Mark Jansen
- All Contributors
License
The MIT License (MIT). Please see License File for more information.
Laravel Package Boilerplate
This package was generated using the Laravel Package Boilerplate.