diff options
author | Remi Collet <remi@remirepo.net> | 2023-06-05 18:04:08 +0200 |
---|---|---|
committer | Remi Collet <remi@php.net> | 2023-06-05 18:04:08 +0200 |
commit | ebadd986039d29280d6509d910ca4c4c02a929ef (patch) | |
tree | 4ccd2120fb250696eaaf599914732f42847ee99c | |
parent | 5ef8cebf9ab2d29fdcfef10def3ccab7901cb840 (diff) |
Wizard: 8.3 as SCL
-rwxr-xr-x | mashrepo | 3 | ||||
-rw-r--r-- | wizard/index.php | 20 |
2 files changed, 14 insertions, 9 deletions
@@ -27,6 +27,9 @@ do elif grep -q "^${name}\$" $mash then ln $rpm $copy && echo "+ $rpm" + elif [[ "^${name}" =~ "^php83-" ]] + then + ln $rpm $copy && echo "+ $rpm" else if [ $debug = 1 ] then echo " $rpm (ignored)" diff --git a/wizard/index.php b/wizard/index.php index a85ee2ad..223fa1ca 100644 --- a/wizard/index.php +++ b/wizard/index.php @@ -49,14 +49,14 @@ $osminbase = [ 'Fedora 36' => '7.4', ]; $osmax = [ - 'RHEL 9' => '8.2', - 'RHEL 8' => '8.2', - 'RHEL 7' => '8.2', - 'CentOS 9' => '8.2', - 'CentOS 8' => '8.2', - 'CentOS 7' => '8.2', - 'Fedora 38' => '8.2', - 'Fedora 37' => '8.2', + 'RHEL 9' => '8.3', + 'RHEL 8' => '8.3', + 'RHEL 7' => '8.3', + 'CentOS 9' => '8.3', + 'CentOS 8' => '8.3', + 'CentOS 7' => '8.3', + 'Fedora 38' => '8.3', + 'Fedora 37' => '8.3', 'Fedora 36' => '8.2', ]; $osname = [ @@ -85,6 +85,7 @@ $arches = [ ]; $phpvers = [ // use false when only SCL + '8.3' => false, '8.2' => 'remi-php82', '8.1' => 'remi-php81', '8.0' => 'remi-php80', @@ -98,7 +99,8 @@ $phpvers = [ '5.4' => 'remi-php54', ]; $phpname = [ -// ':devel' => 'Development version, not ready for production', + ':devel' => 'Development version, not ready for production', + '8.3' => '8.3.0-dev', ':stable' => 'Stable versions - usage recommended', '8.2' => '8.2.6 (active support until December 2024)', '8.1' => '8.1.19 (active support until November 2023)', |