1
0
mirror of https://github.com/nicoverbruggen/phpmon.git synced 2025-08-08 04:20:07 +02:00

👌 PHP 8.2 release, PHP 8.3-dev support

This commit is contained in:
2022-11-02 21:06:36 +01:00
parent e62b03d070
commit bedabaa3bb

View File

@ -13,7 +13,7 @@ struct Constants {
* The latest PHP version that is considered to be stable at the time of release. * The latest PHP version that is considered to be stable at the time of release.
* This version number is currently not used (only as a default fallback). * This version number is currently not used (only as a default fallback).
*/ */
static let LatestStablePhpVersion = "8.1" static let LatestStablePhpVersion = "8.2"
/** /**
The minimum version of Valet that is recommended. The minimum version of Valet that is recommended.
@ -42,13 +42,14 @@ struct Constants {
"7.4", "7.4",
"8.0", "8.0",
"8.1", "8.1",
"8.2",
// ==================== // ====================
// EXPERIMENTAL SUPPORT // EXPERIMENTAL SUPPORT
// ==================== // ====================
// Every release that supports the next release will always support the next // Every release that supports the next release will always support the next
// dev release. In this case, that means that the version below is detected. // dev release. In this case, that means that the version below is detected.
"8.2" "8.3"
] ]
struct Urls { struct Urls {