Closed MrBenGriffin closed 3 years ago
The documentation says "PHP >= 7.1" but composer.json rejects 8 with "php": "^7.1"
"php": "^7.1"
Consider changing composer.json to say php": "^7.1|^8.0",
php": "^7.1|^8.0",
or, more precisely in line with the documentation, "php": ">=7.1"
"php": ">=7.1"
Please merge the pull requests in, that fixes these tings, this package is exactly what I am looking for, just can use it, because no LVL 8 og PHP 8 support :(
This has been fixed in version 1.4.0.
The documentation says "PHP >= 7.1" but composer.json rejects 8 with
"php": "^7.1"
Consider changing composer.json to say
php": "^7.1|^8.0",
or, more precisely in line with the documentation,
"php": ">=7.1"