Skip to content

Commit

Permalink
Merge pull request #147 from francoism90/main
Browse files Browse the repository at this point in the history
Add MariaDB support
  • Loading branch information
freekmurze authored Apr 2, 2024
2 parents 0f31b76 + b1bfc60 commit a5f72ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DbDumperFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ protected static function forDriver($dbDriver): DbDumper
{
$driver = strtolower($dbDriver);

if ($driver === 'mysql') {
if (in_array($driver, ['mariadb', 'mysql'])) {
return new MySql();
}

Expand Down

0 comments on commit a5f72ca

Please sign in to comment.