From 08039895be4a1096fb87831071d984d8c7df1e8a Mon Sep 17 00:00:00 2001 From: Attila Fulop <1162360+fulopattila122@users.noreply.github.com> Date: Sat, 10 Feb 2024 12:46:42 +0200 Subject: [PATCH] Laravel 11 support - Added PHP 8.3 to the CI matrix - Dropped PHP 8.1 support --- .github/workflows/tests.yml | 2 +- CHANGELOG.md | 5 +++++ composer.json | 10 +++++----- 3 files changed, 11 insertions(+), 6 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index d561134..d901465 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -9,7 +9,7 @@ jobs: strategy: fail-fast: false matrix: - php: [8.1, 8.2] + php: [8.2, 8.3] stability: [prefer-lowest, prefer-stable] name: PHP ${{ matrix.php }} - ${{ matrix.stability }} diff --git a/CHANGELOG.md b/CHANGELOG.md index f8ca1d7..78cd5b6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Change Log +## 11.x.x - xx-xxx-xxxx + +- Added Laravel 11 support +- Changed the minimum PHP version to v8.2 + ## 10.0.x - xx-xxx-xxxx - fix for larastan issue (#596, thanks @WalrusSoup) diff --git a/composer.json b/composer.json index 89f81bb..88633ef 100644 --- a/composer.json +++ b/composer.json @@ -18,15 +18,15 @@ } ], "require": { - "php": "^8.1", + "php": "^8.2", "cocur/slugify": "^4.3", - "illuminate/config": "^10.0", - "illuminate/database": "^10.0", - "illuminate/support": "^10.0" + "illuminate/config": "^11.0", + "illuminate/database": "^11.0", + "illuminate/support": "^11.0" }, "require-dev": { "mockery/mockery": "^1.4.4", - "orchestra/testbench": "^8.0", + "orchestra/testbench": "^9.0", "pestphp/pest": "^2.28" }, "autoload": {