Bump version to 1.9.5

Switch to fixed getcomposer.org links

Add composer fallback
This commit is contained in:
Shivam Mathur
2020-08-16 07:26:49 +05:30
parent 5593bd4bd3
commit f7fb800623
11 changed files with 871 additions and 1536 deletions
+5
View File
@@ -20,6 +20,8 @@ export async function build(
os_version: string
): Promise<string> {
// taking inputs
const name = 'setup-php';
const url = 'setup-php.com/support';
const extension_csv: string =
(await utils.getInput('extensions', false)) ||
(await utils.getInput('extension', false)) ||
@@ -50,6 +52,9 @@ export async function build(
script += await config.addINIValues(ini_values_csv, os_version);
}
script += '\n' + (await utils.stepLog('Support this project', os_version));
script += '\n' + (await utils.addLog('$tick', name, url, os_version));
return await utils.writeScript(filename, script);
}