diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 72f4724..3653351 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -31,12 +31,7 @@ jobs: - "8.3" - "8.4" laravel: - - "9" - - "10" - "11" - exclude: - - php: "8.1" - laravel: "11" steps: - name: Checkout code diff --git a/CHANGELOG.md b/CHANGELOG.md index f4420ba..2b81602 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # CHANGELOG +## Unreleased + +* Dropped support for Laravel 9 and 10 + ## 5.10.0 - 2024-11-22 * Added support for PHP 8.4 diff --git a/composer.json b/composer.json index 75833cb..0f96591 100644 --- a/composer.json +++ b/composer.json @@ -13,12 +13,13 @@ "require": { "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0", "kreait/firebase-php": "^7.13", - "illuminate/contracts": "^9.0 || ^10.0 || ^11.0", - "illuminate/support": "^9.0 || ^10.0 || ^11.0", + "illuminate/contracts": "^11.0", + "illuminate/notifications": "^11.0", + "illuminate/support": "^11.0", "symfony/cache": "^6.1.2 || ^7.0.3" }, "require-dev": { - "orchestra/testbench": "^7.0 || ^8.0 || ^9.0", + "orchestra/testbench": "^9.0", "laravel/pint": "^1.14", "phpunit/phpunit": "^9.6.17 || ^10.5.13" },