Add PostgreSQL

This commit is contained in:
Steffen Lange 2022-08-09 23:28:55 +02:00
parent 89f54f9f35
commit b904b95005

14
modules/PostgreSQL.php Normal file
View file

@ -0,0 +1,14 @@
<?php
class PostgreSQL extends PatchBase {
function __construct() {
parent::__construct('PostgreSQL Global Development Group', 'PostgreSQL', 'https://www.postgresql.org/download/');
}
function check() : bool {
if ($this->fetch('https://www.postgresql.org/ftp/latest/', false))
return $this->parse('/\/ftp\/source\/v([\d\.]+)/');
return false;
}
}
?>