Skip to content

Commit 1dcf32d

Browse files
authored
Add PHP 8.4 support (#58)
1 parent 4fe9681 commit 1dcf32d

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/test-unit.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -64,13 +64,13 @@ jobs:
6464
strategy:
6565
fail-fast: false
6666
matrix:
67-
php: ['7.4', '8.0', '8.1', '8.2', '8.3']
67+
php: ['7.4', '8.0', '8.1', '8.2', '8.3', '8.4']
6868
type: ['Phpunit', 'Phpunit Lowest']
6969
include:
7070
- php: 'latest'
7171
type: 'Phpunit Burn'
7272
env:
73-
LOG_COVERAGE: "${{ fromJSON('{true: \"1\", false: \"\"}')[matrix.php == '8.3' && matrix.type == 'Phpunit' && (github.event_name == 'pull_request' || (github.event_name == 'push' && (github.ref == 'refs/heads/develop' || github.ref == 'refs/heads/master')))] }}"
73+
LOG_COVERAGE: "${{ fromJSON('{true: \"1\", false: \"\"}')[matrix.php == '8.4' && matrix.type == 'Phpunit' && (github.event_name == 'pull_request' || (github.event_name == 'push' && (github.ref == 'refs/heads/develop' || github.ref == 'refs/heads/master')))] }}"
7474
services:
7575
mysql:
7676
image: mysql

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ php-lock/lock follows [semantic versioning][1].
2020

2121
## Requirements
2222

23-
- PHP 7.4 - 8.3
23+
- PHP 7.4 - 8.4
2424
- Optionally [nrk/predis][2] to use the Predis locks.
2525
- Optionally the [php-pcntl][3] extension to enable locking with `flock()`
2626
without busy waiting in CLI scripts.

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
],
3434
"homepage": "https://github.com/malkusch/lock",
3535
"require": {
36-
"php": ">=7.4 <8.4",
36+
"php": ">=7.4 <8.5",
3737
"psr/log": "^1.0 || ^2.0 || ^3.0",
3838
"symfony/polyfill-php80": "^1.28"
3939
},

0 commit comments

Comments
 (0)