Add PlantUML

This commit is contained in:
Steffen Lange 2021-12-29 23:34:56 +01:00
parent 6ae4917477
commit 13ffd9de9c

14
modules/PlantUML.php Normal file
View file

@ -0,0 +1,14 @@
<?php
class PlantUML extends PatchBase {
function __construct() {
parent::__construct('Arnaud Roques', 'PlantUML', 'https://plantuml.com/en/download');
}
function check() : bool {
if ($this->fetch_json('https://api.github.com/repos/plantuml/plantuml/releases/latest'))
return $this->parse_json('tag_name');
return false;
}
}
?>