sextanet/migrate-shield

This is my package migrate-shield

0.0.2 2025-01-25 22:46 UTC

This package is auto-updated.

Last update: 2025-03-31 23:42:28 UTC


README

Latest Version on Packagist GitHub Tests Action Status GitHub Code Style Action Status Total Downloads

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.