Remove bintray from manifest and win32.ps1

Fix JIT ini values in win32.ps1
This commit is contained in:
Shivam Mathur
2021-02-23 13:59:28 +05:30
parent 399ab79d14
commit fa18c2b29f
4 changed files with 12 additions and 7 deletions

2
dist/index.js vendored
View File

@ -2715,7 +2715,7 @@ exports.fetch = fetch;
* @param version
*/
async function parseVersion(version) {
const manifest = 'https://dl.bintray.com/shivammathur/php/php-versions.json';
const manifest = 'https://raw.githubusercontent.com/shivammathur/setup-php/develop/src/configs/php-versions.json';
switch (true) {
case /^(latest|\d+\.x)$/.test(version):
return JSON.parse(await fetch(manifest))[version];