diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index fe01ad1..ed86bcc 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -9,8 +9,8 @@ jobs: strategy: fail-fast: false matrix: - php: [8.1, 8.2] - laravel: [8, 9, 10] + php: [8.1, 8.2, 8.3] + laravel: [8, 9, 10, 11] exclude: - php: 8.2 laravel: 8 diff --git a/CHANGELOG.md b/CHANGELOG.md index 2a0a9c4..19f6459 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to `laravel-config` will be documented in this file. ## [Unreleased] +## [5.1.0] - 2024-04-08 + +- Laravel 11 and PHP 8.3 support added. + ## [5.0.0] - 2024-03-05 - Dropped support for PHP versions below 8.1. diff --git a/composer.json b/composer.json index ba6f4a1..58c14c2 100755 --- a/composer.json +++ b/composer.json @@ -31,13 +31,13 @@ } ], "require": { - "php": "^8.1|^8.2", + "php": "^8.1|^8.2|^8.3", "ext-json": "*", - "illuminate/support": "^8.49|^9.0|^10.0", + "illuminate/support": "^8.49|^9.0|^10.0|^11.0", "laravel/legacy-factories": "^1.0" }, "require-dev": { - "orchestra/testbench": "^6.13|^7.0|^8.0", + "orchestra/testbench": "^6.13|^7.0|^8.0|^9.0", "phpunit/phpunit": "^9.5.2" }, "autoload": {