1
0
mirror of https://github.com/nicoverbruggen/phpmon.git synced 2025-08-09 12:43:01 +02:00

👌 Move cut-off date to PHP 8.4 release day

This commit is contained in:
2024-10-31 21:56:13 +01:00
parent a47b139d92
commit b319ecab59

View File

@@ -30,7 +30,7 @@ struct Constants {
will be displayed to let them know that certain operations will be displayed to let them know that certain operations
will not work correctly and that they need to update their app. will not work correctly and that they need to update their app.
*/ */
static let PhpFormulaeCutoffDate = "2024-11-01" // YYYY-MM-DD static let PhpFormulaeCutoffDate = "2024-11-31" // YYYY-MM-DD
/** /**
* The PHP versions that are considered pre-release versions. * The PHP versions that are considered pre-release versions.
@@ -39,7 +39,8 @@ struct Constants {
*/ */
static var ExperimentalPhpVersions: Set<String> { static var ExperimentalPhpVersions: Set<String> {
let releaseDates = [ let releaseDates = [
"8.4": Date.fromString("2024-12-01") // PLACEHOLDER DATE // "8.5": Date.fromString("2025-11-01"), // PLACEHOLDER DATE
"8.4": Date.fromString("2024-11-22"),
] ]
return Set(releaseDates return Set(releaseDates
@@ -72,8 +73,7 @@ struct Constants {
static let DetectedPhpVersions: Set = [ static let DetectedPhpVersions: Set = [
"5.6", "5.6",
"7.0", "7.1", "7.2", "7.3", "7.4", "7.0", "7.1", "7.2", "7.3", "7.4",
"8.0", "8.1", "8.2", "8.3", "8.0", "8.1", "8.2", "8.3", "8.4"
"8.4"
] ]
/** /**
@@ -89,14 +89,12 @@ struct Constants {
3: // Valet v3 dropped support for v5.6 3: // Valet v3 dropped support for v5.6
[ [
"7.0", "7.1", "7.2", "7.3", "7.4", "7.0", "7.1", "7.2", "7.3", "7.4",
"8.0", "8.1", "8.2", "8.3", "8.0", "8.1", "8.2", "8.3", "8.4"
"8.4" // dev
], ],
4: // Valet v4 dropped support for v7.0 4: // Valet v4 dropped support for v7.0
[ [
"7.1", "7.2", "7.3", "7.4", "7.1", "7.2", "7.3", "7.4",
"8.0", "8.1", "8.2", "8.3", "8.0", "8.1", "8.2", "8.3", "8.4"
"8.4" // dev
] ]
] ]