Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PHP 8.0 is now EOL #840

Merged
merged 1 commit into from
Nov 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions eol.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

// Notes for specific branches can be added here, and will appear in the table.
$BRANCH_NOTES = [
'8.0' => '<a href="/migration81">A guide is available for migrating from PHP 8.0 to 8.1.</a>',
'7.4' => '<a href="/migration80">A guide is available for migrating from PHP 7.4 to 8.0.</a>',
'7.3' => '<a href="/migration74">A guide is available for migrating from PHP 7.3 to 7.4.</a>',
'7.2' => '<a href="/migration73">A guide is available for migrating from PHP 7.2 to 7.3.</a>',
Expand Down
37 changes: 37 additions & 0 deletions include/releases.inc
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,43 @@
$OLDRELEASES = array (
8 =>
array (
'8.0.30' =>
array (
'announcement' =>
array (
'English' => '/releases/8_0_30.php',
),
'tags' =>
array (
0 => 'security',
),
'date' => '03 Aug 2023',
'source' =>
array (
0 =>
array (
'filename' => 'php-8.0.30.tar.gz',
'name' => 'PHP 8.0.30 (tar.gz)',
'sha256' => '449d2048fcb20a314d8c218097c6d1047a9f1c5bb72aa54d5d3eba0a27a4c80c',
'date' => '03 Aug 2023',
),
1 =>
array (
'filename' => 'php-8.0.30.tar.bz2',
'name' => 'PHP 8.0.30 (tar.bz2)',
'sha256' => '98a9cb6a0e27a6950cdf4b26dcac48f2be2d936d5224a502f066cf3d4cf19b92',
'date' => '03 Aug 2023',
),
2 =>
array (
'filename' => 'php-8.0.30.tar.xz',
'name' => 'PHP 8.0.30 (tar.xz)',
'sha256' => '216ab305737a5d392107112d618a755dc5df42058226f1670e9db90e77d777d9',
'date' => '03 Aug 2023',
),
),
'museum' => false,
),
'8.1.25' =>
array (
'announcement' =>
Expand Down
12 changes: 0 additions & 12 deletions include/version.inc
Original file line number Diff line number Diff line change
Expand Up @@ -54,18 +54,6 @@ $RELEASES = (function () {
]
];

/* PHP 8.0 Release */
$data['8.0'] = [
'version' => '8.0.30',
'date' => '03 Aug 2023',
'tags' => ['security'], // Set to ['security'] for security releases.
'sha256' => [
'tar.gz' => '449d2048fcb20a314d8c218097c6d1047a9f1c5bb72aa54d5d3eba0a27a4c80c',
'tar.bz2' => '98a9cb6a0e27a6950cdf4b26dcac48f2be2d936d5224a502f066cf3d4cf19b92',
'tar.xz' => '216ab305737a5d392107112d618a755dc5df42058226f1670e9db90e77d777d9',
]
];

$ret = [];
foreach ($data as $release) {
$version = $release['version'];
Expand Down