Skip to content

Commit

Permalink
Update PHP version requirement in composer.json
Browse files Browse the repository at this point in the history
Changed the PHP version requirement from "^7.4" to ">=7.4" in the composer.json file. This was necessary to allow the software to run in environments with PHP 8 or higher, increasing its compatibility and usability.
  • Loading branch information
attackant committed Oct 31, 2023
1 parent 3eb5afa commit 0ea326e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"license" : "GPL-3.0-or-later",
"require" : {
"composer/installers": "^1.12.0",
"php": "^7.4"
"php": ">=7.4"
},
"require-dev": {
"phpspec/prophecy": "^1.17.0",
Expand Down

0 comments on commit 0ea326e

Please sign in to comment.