Skip to content

Commit 68fe803

Browse files
committed
We actually require PHP 8.0+
#24 (comment)
1 parent dcb56bf commit 68fe803

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ multiple rows or cells by direct access (`$x->readString($worksheetId, 'A1')`, e
136136

137137
## Requirements
138138

139-
PHP 7.4+ with ZIP and XML extensions.
139+
PHP 8.0+ with ZIP and XML extensions.
140140
Check [`composer.json`](./composer.json) for details.
141141

142142
## Credits

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
}
2323
],
2424
"require": {
25-
"php": ">=7.4",
25+
"php": ">=8.0",
2626
"ext-ctype": "*",
2727
"ext-dom": "*",
2828
"ext-xml": "*",

composer.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

phpstan.dist.neon

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
parameters:
22
phpVersion:
3-
min: 70400 # PHP 7.4
3+
min: 80000 # PHP 8.0
44
max: 80499 # PHP 8.4
55
level: 10 # https://phpstan.org/user-guide/rule-levels
66
fileExtensions:

0 commit comments

Comments
 (0)