PatchBot/modules/Gerbera.php
2021-10-24 14:12:29 +02:00

14 lines
333 B
PHP

<?php
class Gerbera extends PatchBase {
function __construct() {
parent::__construct('Gerbera Contributors', 'Gerbera', 'https://gerbera.io/');
}
function check() : bool {
if ($this->fetch_json('https://api.github.com/repos/gerbera/gerbera/releases/latest'))
return $this->parse_json('tag_name');
return false;
}
}
?>