Skip to content

Commit

Permalink
Added PHP 8.4 support, dropped PHP 8.1 support
Browse files Browse the repository at this point in the history
  • Loading branch information
poliander committed Oct 12, 2024
1 parent 9e037c0 commit 336aa06
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ jobs:
strategy:
matrix:
php-version:
- '8.1'
- '8.2'
- '8.3'
- '8.4'

steps:
- name: Checkout
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ $when = $expression->getNext();
| 2.4.* | 7.4 - 8.2 | end of life |
| 3.0.* | 7.4 - 8.2 | end of life |
| 3.1.* | 8.1 - 8.3 | |
| 3.2.* | 8.2 - 8.4 | |

## Changelog

Expand Down Expand Up @@ -106,3 +107,4 @@ $when = $expression->getNext();
| 3.0.6 (2023-07-30) | fixed #18, #19 |
| 3.0.7 (2023-10-28) | fixed #22 |
| 3.1.0 (2023-11-23) | added PHP 8.3 support, dropped PHP 7/8.0 support, updated PHPUnit to 10.* |
| 3.2.0 (TBD) | added PHP 8.4 support |
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
}
],
"require": {
"php": "8.1.* || 8.2.* || 8.3.*"
"php": "8.2.* || 8.3.* || 8.4.*"
},
"require-dev": {
"phpunit/phpunit": "~10.0"
Expand Down

0 comments on commit 336aa06

Please sign in to comment.