Add MariaDB 10.9

This commit is contained in:
Steffen Lange 2022-11-08 15:21:00 +01:00
parent 30db709deb
commit f7b773249d

15
modules/MariaDB109.php Normal file
View file

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