Merge pull request #794 from davereid/patch-1

Provide a "lowest" php-version parameter
This commit is contained in:
Shivam Mathur 2023-12-08 00:14:49 +05:30 committed by GitHub
commit c085ca391e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 5 additions and 4 deletions

View File

@ -90,4 +90,4 @@ jobs:
php -r "if(ini_get('memory_limit')!='-1') {throw new Exception('memory_limit not disabled');}" php -r "if(ini_get('memory_limit')!='-1') {throw new Exception('memory_limit not disabled');}"
php -r "if(ini_get('post_max_size')!='256M') {throw new Exception('post_max_size not added');}" php -r "if(ini_get('post_max_size')!='256M') {throw new Exception('post_max_size not added');}"
php -r "if(ini_get('short_open_tag')!=1) {throw new Exception('short_open_tag not added');}" php -r "if(ini_get('short_open_tag')!=1) {throw new Exception('short_open_tag not added');}"
php -r "if(ini_get('date.timezone')!='Asia/Kolkata') {throw new Exception('date.timezone not added');}" php -r "if(ini_get('date.timezone')!='Asia/Kolkata') {throw new Exception('date.timezone not added');}"

2
dist/index.js vendored
View File

@ -1156,7 +1156,7 @@ async function getManifestURL() {
exports.getManifestURL = getManifestURL; exports.getManifestURL = getManifestURL;
async function parseVersion(version) { async function parseVersion(version) {
switch (true) { switch (true) {
case /^(latest|nightly|\d+\.x)$/.test(version): case /^(latest|lowest|nightly|\d+\.x)$/.test(version):
return JSON.parse((await fetch.fetch(await getManifestURL()))['data'])[version]; return JSON.parse((await fetch.fetch(await getManifestURL()))['data'])[version];
default: default:
switch (true) { switch (true) {

View File

@ -1,7 +1,8 @@
{ {
"lowest": "8.1",
"latest": "8.3", "latest": "8.3",
"nightly": "8.4", "nightly": "8.4",
"5.x": "5.6", "5.x": "5.6",
"7.x": "7.4", "7.x": "7.4",
"8.x": "8.3" "8.x": "8.3"
} }

View File

@ -59,7 +59,7 @@ export async function getManifestURL(): Promise<string> {
*/ */
export async function parseVersion(version: string): Promise<string> { export async function parseVersion(version: string): Promise<string> {
switch (true) { switch (true) {
case /^(latest|nightly|\d+\.x)$/.test(version): case /^(latest|lowest|nightly|\d+\.x)$/.test(version):
return JSON.parse((await fetch.fetch(await getManifestURL()))['data'])[ return JSON.parse((await fetch.fetch(await getManifestURL()))['data'])[
version version
]; ];