Skip to content

Commit b10b0a0

Browse files
committed
Drop PHP 7.3 support
1 parent a422df5 commit b10b0a0

File tree

5 files changed

+5
-6
lines changed

5 files changed

+5
-6
lines changed

.github/workflows/test-unit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
php: ['7.3', '7.4', '8.0', '8.1', '8.2', '8.3', 'latest']
18+
php: ['7.4', '8.0', '8.1', '8.2', '8.3', 'latest']
1919
type: ['Phpunit']
2020
include:
2121
- php: 'latest'

.php-cs-fixer.dist.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
->setRules([
1515
'@PhpCsFixer' => true,
1616
'@PhpCsFixer:risky' => true,
17-
'@PHP71Migration' => true,
18-
'@PHP71Migration:risky' => true,
17+
'@PHP74Migration' => true,
18+
'@PHP74Migration:risky' => true,
1919

2020
// required by PSR-12
2121
'concat_space' => [

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ cache:
55
- $HOME/.composer/cache
66

77
php:
8-
- 7.3
98
- 7.4
109
- nightly
1110

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ php-lock/lock follows semantic versioning. Read more on [semver.org][1].
1919

2020
## Requirements
2121

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

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
],
3535
"homepage": "https://github.com/malkusch/lock",
3636
"require": {
37-
"php": ">=7.3 <8.4",
37+
"php": ">=7.4 <8.4",
3838
"psr/log": "^1.0 || ^2.0 || ^3.0"
3939
},
4040
"require-dev": {

0 commit comments

Comments
 (0)