Add MariaDB 11.4
This commit is contained in:
parent
2b05c8a7c9
commit
d7b098da09
1 changed files with 15 additions and 0 deletions
15
modules/MariaDB114.php
Normal file
15
modules/MariaDB114.php
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
<?php
|
||||
|
||||
class MariaDB114 extends PatchBase {
|
||||
function __construct() {
|
||||
parent::__construct('MariaDB Foundation', 'MariaDB', 'https://mariadb.org/download/');
|
||||
$this->patch->setBranch('11.4');
|
||||
}
|
||||
function check() : bool {
|
||||
if ($this->fetch_json('https://downloads.mariadb.org/rest-api/mariadb/11.4/'))
|
||||
return $this->parse_json('release_id');
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
||||
Loading…
Add table
Add a link
Reference in a new issue