PatchBot/modules/Adminer.php

14 lines
329 B
PHP

<?php
class Adminer extends PatchBase {
function __construct() {
parent::__construct('Jakub Vrána', 'Adminer', 'https://www.adminer.org/');
}
function check() : bool {
if ($this->fetch('https://api.github.com/repos/vrana/adminer/releases/latest', true))
return $this->parse_json('tag_name');
return false;
}
}
?>