Skip to content

Commit

Permalink
chore(testing): use sqlite by default
Browse files Browse the repository at this point in the history
  • Loading branch information
SychO9 committed Dec 6, 2024
1 parent 570580d commit c835bdb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion php-packages/testing/src/integration/Setup/SetupScript.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class SetupScript

public function __construct()
{
$this->driver = getenv('DB_DRIVER') ?: 'mysql';
$this->driver = getenv('DB_DRIVER') ?: 'sqlite';
$this->host = getenv('DB_HOST') ?: 'localhost';
$this->port = intval(getenv('DB_PORT') ?: match ($this->driver) {
'mysql', 'mariadb' => 3306,
Expand Down

0 comments on commit c835bdb

Please sign in to comment.