henrotaym/laravel-mysql-dump

v0.0.7 2024-08-08 01:28 UTC

This package is auto-updated.

Last update: 2024-11-08 02:02:31 UTC


README

Latest Version on Packagist Total Downloads

Installation

You can install the package via composer:

composer require henrotaym/laravel-mysql-dump

You can install package with:

php artisan laravel-mysql-dump:install

This is the contents of the published config file:

return [
];

Usage

// EXPORT
$factory = app()->make(ExportStrategyFactory::class);
$strategy = $factory->database(
    env('DB_HOST'),
    env('DB_PORT'),
    env('DB_USERNAME'),
    env('DB_PASSWORD'),
    'tenant_4ab79e07-40ca-4c72-833e-a3f9354b4c3c',
);
$path = $strategy->export();

// IMPORT
$path = '/absolute-path/to/my-file.sql';
$importFactory = app()->make(ImportStrategyFactory::class);
$importStrategy = $importFactory->database(
    env('DB_HOST'),
    env('DB_PORT'),
    env('DB_USERNAME'),
    env('DB_PASSWORD'),
    $path
);
$importStrategy->import();

Testing

./cli 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.