Skip to content

Commit

Permalink
Update for Laravel 11 compatability
Browse files Browse the repository at this point in the history
The composer.json file has been updated to allow newer versions of PHP and specific packages. PHP is now supported up to 8.2, Illuminate/support up to 11.0, and PHPUnit/phpunit up to 11.0. This change allows for more compatibility with updated environments.
  • Loading branch information
rafalpietrzakio committed Mar 21, 2024
1 parent af93401 commit 169a862
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,17 @@
}
],
"require": {
"php": "^8.0|^8.1",
"php": "^8.0|^8.1|^8.2",
"illuminate/cache": "^8.0|^9.0|^10.0",
"illuminate/console": "^8.0|^9.0|^10.0",
"illuminate/support": "^8.0|^9.0|^10.0"
"illuminate/support": "^8.0|^9.0|^10.0|^11.0"
},
"suggest": {
"geoip2/geoip2": "Required to use the MaxMind database or web service with GeoIP (~2.1).",
"monolog/monolog": "Allows for storing location not found errors to the log"
},
"require-dev": {
"phpunit/phpunit": "^8.0|^9.0|^10.0",
"phpunit/phpunit": "^8.0|^9.0|^10.0|^11.0",
"mockery/mockery": "^1.3",
"geoip2/geoip2": "~2.1",
"vlucas/phpdotenv": "^5.0",
Expand Down

0 comments on commit 169a862

Please sign in to comment.