Skip to content

Commit 169a862

Browse files
Update for Laravel 11 compatability
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.
1 parent af93401 commit 169a862

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,17 @@
1818
}
1919
],
2020
"require": {
21-
"php": "^8.0|^8.1",
21+
"php": "^8.0|^8.1|^8.2",
2222
"illuminate/cache": "^8.0|^9.0|^10.0",
2323
"illuminate/console": "^8.0|^9.0|^10.0",
24-
"illuminate/support": "^8.0|^9.0|^10.0"
24+
"illuminate/support": "^8.0|^9.0|^10.0|^11.0"
2525
},
2626
"suggest": {
2727
"geoip2/geoip2": "Required to use the MaxMind database or web service with GeoIP (~2.1).",
2828
"monolog/monolog": "Allows for storing location not found errors to the log"
2929
},
3030
"require-dev": {
31-
"phpunit/phpunit": "^8.0|^9.0|^10.0",
31+
"phpunit/phpunit": "^8.0|^9.0|^10.0|^11.0",
3232
"mockery/mockery": "^1.3",
3333
"geoip2/geoip2": "~2.1",
3434
"vlucas/phpdotenv": "^5.0",

0 commit comments

Comments
 (0)