Skip to content

Commit

Permalink
Adapt minimum db server versions to Joomla 5
Browse files Browse the repository at this point in the history
  • Loading branch information
richard67 committed Jun 18, 2023
1 parent 1cdebd0 commit 128530b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions installation/src/Helper/DatabaseHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ abstract class DatabaseHelper
* @var string
* @since 4.0.0
*/
protected static $dbMinimumMariaDb = '10.1';
protected static $dbMinimumMariaDb = '10.4';

/**
* The minimum database server version for MySQL databases as required by the CMS.
Expand All @@ -45,7 +45,7 @@ abstract class DatabaseHelper
* @var string
* @since 4.0.0
*/
protected static $dbMinimumMySql = '5.6';
protected static $dbMinimumMySql = '8.0.11';

/**
* The minimum database server version for PostgreSQL databases as required by the CMS.
Expand All @@ -54,7 +54,7 @@ abstract class DatabaseHelper
* @var string
* @since 4.0.0
*/
protected static $dbMinimumPostgreSql = '11.0';
protected static $dbMinimumPostgreSql = '12.0';

/**
* Method to get a database driver.
Expand Down

0 comments on commit 128530b

Please sign in to comment.