sextanet / migrate-shield
This is my package migrate-shield
Fund package maintenance!
SextaNet
Requires
- php: ^8.2
- illuminate/contracts: ^10.0||^11.0
- nunomaduro/laravel-console-menu: ^3.5
- spatie/laravel-backup: ^9.2
- spatie/laravel-package-tools: ^1.16
Requires (Dev)
- larastan/larastan: ^2.9
- laravel/pint: ^1.14
- nunomaduro/collision: ^8.1.1||^7.10.0
- orchestra/testbench: ^9.0.0||^8.22.0
- pestphp/pest: ^3.0
- pestphp/pest-plugin-arch: ^3.0
- pestphp/pest-plugin-laravel: ^3.0
- phpstan/extension-installer: ^1.3
- phpstan/phpstan-deprecation-rules: ^1.1
- phpstan/phpstan-phpunit: ^1.3
- spatie/laravel-ray: ^1.35
This package is auto-updated.
Last update: 2025-03-31 23:42:28 UTC
README
Protects your production environment by backing up your database
It uses Spatie's Laravel Backup behind the scenes.
Installation
You can install the package via composer:
composer require sextanet/migrate-shield
Usage
Simply, use your traditional commands in production mode
php artisan migrate:fresh # --seed
You will get covered and intercepted with Shield
Configuration
By default, it works inmediately with zero config. But also, you can customize some things in your .env
file
MIGRATE_SHIELD_DISK=local MIGRATE_SHIELD_PASSWORD="YOURPASSWORD"
Optionally, you can publish the config file with:
php artisan vendor:publish --tag="migrate-shield-config"
Troubleshooting
If have your mysqldump
or pg_dump
in another location, you need to add dump binary path
Source: https://spatie.be/docs/laravel-backup/v8/installation-and-setup
//config/database.php 'connections' => [ 'mysql' => [ 'driver' => 'mysql' // (...), 'dump' => [ 'dump_binary_path' => env('MYSQL_DUMP_BINARY_PATH', null), // only the path, so without `mysqldump` or `pg_dump` 'timeout' => env('MYSQL_DUMP_TIMEOUT', 60 * 5), // 5 minutes timuout ], ] ],
Testing
composer test
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
License
The MIT License (MIT). Please see License File for more information.