Add support for phing

This commit is contained in:
Shivam Mathur
2020-08-24 12:11:17 +05:30
parent 9457ce6e2b
commit f641885a8d
3 changed files with 16 additions and 1 deletions

View File

@ -505,6 +505,10 @@ export async function addTools(
url = github + 'phan/phan/' + uri;
script += await addArchive(tool, url, os_version);
break;
case 'phing':
url = 'https://www.phing.info/get/phing-' + version + '.phar';
script += await addArchive(tool, url, os_version);
break;
case 'phinx':
script += await addPackage(tool, release, 'robmorgan/', os_version);
break;