Add MariaDB 10.11

This commit is contained in:
Steffen Lange 2023-02-23 16:56:22 +01:00
parent 7ca732654e
commit 8a5bad0b3f

15
modules/MariaDB1011.php Normal file
View file

@ -0,0 +1,15 @@
<?php
class MariaDB1011 extends PatchBase {
function __construct() {
parent::__construct('MariaDB Foundation', 'MariaDB', 'https://mariadb.org/download/');
$this->patch->setBranch('10.11');
}
function check() : bool {
if ($this->fetch_json('https://downloads.mariadb.org/rest-api/mariadb/10.11/'))
return $this->parse_json('release_id');
return false;
}
}
?>