Skip to content

Commit

Permalink
chore: update PHP and Laravel version requirements (#917)
Browse files Browse the repository at this point in the history
* chore: update PHP and Laravel version requirements

Previous (unsupported) versions were kept in the composer.json file. These version constraints are now aligned with what is mentioned in the README and the run-tests action.

* chore: prevent prefer-lowest tests from failing due to PHPUnit 10 deprecations
  • Loading branch information
jordyvanderhaegen authored Nov 26, 2024
1 parent 75d2a3c commit ff6bcf8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@
}
],
"require": {
"php": ">=7.1.0",
"laravel/framework": "~5.2.0||~5.3.0||~5.4.0||~5.5.0||~5.6.0||~5.7.0||~5.8.0||^6.0||^7.0||^8.0||^9.0|^10.0||^11.0"
"php": "^8.2",
"laravel/framework": "^10.0|^11.0"
},
"require-dev": {
"orchestra/testbench-browser-kit": "~3.4|~3.8|~4.0|^7.12|^8.5|^9.0",
"phpunit/phpunit": "6.0.*|^8.0|^9.5.10|^10.0"
"orchestra/testbench-browser-kit": "^8.5|^9.0",
"phpunit/phpunit": "^9.5.10|^10.0"
},
"suggest": {
"ext-intl": "*"
Expand Down

0 comments on commit ff6bcf8

Please sign in to comment.