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

4
dist/index.js vendored
View File

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