diff options
author | Remi Collet <remi@remirepo.net> | 2018-02-28 14:38:13 +0100 |
---|---|---|
committer | Remi Collet <remi@remirepo.net> | 2018-02-28 14:38:13 +0100 |
commit | 3d5634a0d5e0df0356dec651ed82738942f898ac (patch) | |
tree | d1f24d0ed395ecd326e290d43ace381b7b44c649 | |
parent | 82303cf79b90f4c50c0a3643cccce4a79c405daa (diff) |
update PHP versions
drop F24
add F28
-rw-r--r-- | wizard/index.php | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/wizard/index.php b/wizard/index.php index 41f604be..1d654214 100644 --- a/wizard/index.php +++ b/wizard/index.php @@ -8,8 +8,8 @@ <link rel="shortcut icon" href="/favicon.ico" /> </head> <?php -define('FC_EOL', 24); -define('FC_DEV', 27); +define('FC_EOL', 25); +define('FC_DEV', 28); define('EL_EOL', 5); define('EL_DEV', 8); define('COUNTER', __DIR__ . "/counter.txt"); @@ -19,30 +19,30 @@ $osvers = [ 'RHEL 6' => '5.3', 'CentOS 7' => '5.4', 'CentOS 6' => '5.3', + 'Fedora 28' => '7.2', 'Fedora 27' => '7.1', 'Fedora 26' => '7.1', 'Fedora 25' => '7.0', - 'Fedora 24' => '5.6', ]; $osmin = [ 'RHEL 7' => '5.4', 'RHEL 6' => '5.4', 'CentOS 7' => '5.4', 'CentOS 6' => '5.4', + 'Fedora 28' => '5.6', 'Fedora 27' => '5.6', 'Fedora 26' => '5.6', 'Fedora 25' => '5.4', - 'Fedora 24' => '5.4', ]; $osname = [ 'RHEL 7' => 'RHEL-7', 'RHEL 6' => 'RHEL-6 (maintained until March 2020)', 'CentOS 7' => 'CentOS 7', 'CentOS 6' => 'CentOS 6 (maintained until March 2020)', + 'Fedora 28' => 'Fedora 28 (development version)', 'Fedora 27' => 'Fedora 27', 'Fedora 26' => 'Fedora 26', 'Fedora 25' => 'Fedora 25 (no support since December 12th 2017)', - 'Fedora 24' => 'Fedora 24 (no support since August 8th 2017)', ]; $grpname = [ 'RHEL' => 'Red Hat Enterprise Linux', @@ -50,7 +50,7 @@ $grpname = [ 'Fedora' => 'Fedora', ]; $types = [ - 'base' => 'Single version (simplest way)', + 'base' => 'Default / Single version (simplest way)', 'scl' => 'Multiple versions simultaneously', ]; $phpvers = [ @@ -62,10 +62,10 @@ $phpvers = [ '5.4' => 'remi-php54', ]; $phpname = [ - '7.2' => '7.2.2 (active support until Nov 2019)', - '7.1' => '7.1.14 (active support until Dec 2018)', - '7.0' => '7.0.27 (security only support until Dec 2018)', - '5.6' => '5.6.33 (security only support until Dec 2018)', + '7.2' => '7.2.3 (active support until Nov 2019)', + '7.1' => '7.1.15 (active support until Dec 2018)', + '7.0' => '7.0.28 (security only support until Dec 2018)', + '5.6' => '5.6.34 (security only support until Dec 2018)', '5.5' => '5.5.38 (no upstream support since July 2016)', '5.4' => '5.4.45 (no upstream support since Sept 2015)', ]; |