Add support for phan/phan

This commit is contained in:
Shivam Mathur
2020-05-21 03:51:28 +05:30
parent a48ff666f8
commit b1776b79c8
7 changed files with 26 additions and 3 deletions

View File

@ -463,6 +463,10 @@ export async function addTools(
url = github + 'squizlabs/PHP_CodeSniffer/' + uri;
script += await addArchive(tool, version, url, os_version);
break;
case 'phan':
url = github + 'phan/phan/' + uri;
script += await addArchive(tool, version, url, os_version);
break;
case 'phive':
script += await addPhive(version, os_version);
break;