Skip to content

Commit

Permalink
Update EOL dates for supported PHP versions
Browse files Browse the repository at this point in the history
Fixes #164.
  • Loading branch information
chesio committed Oct 14, 2024
1 parent c380396 commit bd82ffe
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@

## Upcoming version 0.25.0 (????-??-??)

...
### Changed

* End-of-life dates for supported PHP versions have been updated [#164](https://github.com/chesio/bc-security/issues/164).

## Version 0.24.0 (2024-07-29)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,10 @@ class PhpVersionSupported extends Checklist\BasicCheck
* @link https://www.php.net/supported-versions.php
*/
private const SUPPORTED_VERSIONS = [
'8.1' => '2024-11-25',
'8.2' => '2025-12-08',
'8.3' => '2026-11-23',
'8.1' => '2025-12-31',
'8.2' => '2026-12-31',
'8.3' => '2027-12-31',
'8.4' => '2028-12-31',
];


Expand Down

0 comments on commit bd82ffe

Please sign in to comment.