henrotaym/laravel-mysql-dump

laravel-mysql-dump

Maintainers

Package info

github.com/henrotaymcorp/laravel-mysql-dump

Homepage

pkg:composer/henrotaym/laravel-mysql-dump

Statistics

Installs: 1 397

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 1

v1.0.1 2026-02-24 01:04 UTC

This package is auto-updated.

Last update: 2026-02-24 01:34:54 UTC


README

Latest Version on Packagist Total Downloads

Compatibility

Laravel Package
9.x / 10.x / 11.x 0.x
12.x 1.x

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.