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

4
dist/index.js vendored
View File

@ -1987,6 +1987,10 @@ async function addTools(tools_csv, php_version, os_version) {
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;