From 9ed689ef5e40d1d9896f7dcdcfd32de2c4e3a6d8 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 | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index bc06d8a..955303c 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 d2d16c2..8a4d72c 100644 --- a/Changelog.md +++ b/Changelog.md @@ -8,6 +8,8 @@ - Dropped PHP 8.0 & PHP 8.1 Support - Dropped Laravel 9 Support - Dropped Enum v3 Support +- Added PHP 8.3 Support +- Changed minimum Laravel version to v10.38.2 - Changed minimal Enum requirement to v4.1 - BC: Changed the `PaymentMethod` interface into Configurable - Deprecated the `PaymentMethod::getConfiguration()` in favor of `configuration()` diff --git a/composer.json b/composer.json index bbe9dc3..0c44cec 100644 --- a/composer.json +++ b/composer.json @@ -20,7 +20,7 @@ "php": "^8.2", "konekt/concord": "^1.13", "konekt/enum": "^4.1", - "laravel/framework": "^10.0", + "laravel/framework": "^10.38.2", "vanilo/contracts": "^4.0", "vanilo/support": "^4.0" },