Add mitmproxy
This commit is contained in:
parent
32d0ac744e
commit
7c23599f1b
1 changed files with 14 additions and 0 deletions
14
modules/Mitmproxy.php
Normal file
14
modules/Mitmproxy.php
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
<?php
|
||||
|
||||
class Mitmproxy extends PatchBase {
|
||||
function __construct() {
|
||||
parent::__construct('Aldo Cortesi', 'mitmproxy', 'https://mitmproxy.org/');
|
||||
}
|
||||
function check() : bool {
|
||||
if ($this->fetch_json('https://api.github.com/repos/mitmproxy/mitmproxy/releases/latest'))
|
||||
return $this->parse_json('tag_name');
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
||||
Loading…
Add table
Add a link
Reference in a new issue