From ded56d243ac06b8bbc4c671ec30ed14084017d69 Mon Sep 17 00:00:00 2001 From: Attila Fulop <1162360+fulopattila122@users.noreply.github.com> Date: Tue, 27 Feb 2024 23:15:12 +0200 Subject: [PATCH] Changed minimum Laravel version to v10.38.2 - Added PHP 8.3 Support individual modules' CI --- .github/workflows/tests.yml | 4 ++-- Changelog.md | 2 ++ composer.json | 4 ++-- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index c96ba60..514d171 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -8,8 +8,8 @@ jobs: timeout-minutes: 10 strategy: matrix: - php: ['8.2'] - laravel: ['10.0', '10.46'] + php: ['8.2', '8.3'] + laravel: ['10.38', '10.46'] name: PHP ${{ matrix.php }} Laravel ${{ matrix.laravel }} steps: - name: Checkout diff --git a/Changelog.md b/Changelog.md index fb23956..95d9572 100644 --- a/Changelog.md +++ b/Changelog.md @@ -7,6 +7,8 @@ - Dropped PHP 8.0 & PHP 8.1 Support - Dropped Laravel 9 Support +- Added PHP 8.3 Support +- Changed minimum Laravel version to v10.38.2 ## 3.x Series diff --git a/composer.json b/composer.json index 96c0a40..3c8064b 100644 --- a/composer.json +++ b/composer.json @@ -19,11 +19,11 @@ "require": { "php": "^8.2", "cviebrock/eloquent-sluggable": "^10.0", - "illuminate/support": "^10.0", + "illuminate/support": "^10.38", "konekt/concord": "^1.13" }, "require-dev": { - "phpunit/phpunit": "^9.0", + "phpunit/phpunit": "^9.0|^10.0", "orchestra/testbench": "^8.0" }, "autoload": {