Skip to content

Commit 1d19169

Browse files
committed
Lift minimal PHP version requirement to 7.1
7.0 is not maintained anymore
1 parent bc783fc commit 1d19169

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
runs-on: ubuntu-latest
77
strategy:
88
matrix:
9-
php: [ '7.0', '7.1', '7.2', '7.3', '7.4', '8.0' ]
9+
php: [ '7.1', '7.2', '7.3', '7.4', '8.0' ]
1010

1111
steps:
1212
- uses: actions/checkout@master

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ but don't want to deal with nullable values.
88
## Features
99

1010
- PSR-11
11-
- PHP 7.0+
11+
- PHP 7.1+
1212
- PHP 8.0
1313
- Semver
1414
- Tests

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "Null (always empty) PSR-11 container implementation",
44
"type": "library",
55
"require": {
6-
"php": ">=7.0",
6+
"php": ">=7.1",
77
"psr/container": "^1.0"
88
},
99
"license": "MIT",

0 commit comments

Comments
 (0)