From 000e726bf88ce0b87081bfbbc7bdbb5151e906dc Mon Sep 17 00:00:00 2001 From: Attila Fulop <1162360+fulopattila122@users.noreply.github.com> Date: Thu, 4 Apr 2024 14:27:05 +0300 Subject: [PATCH] Changed minimum Laravel version to v10.43 - Required due the usage of `Schema::hasIndex()` --- .github/workflows/tests.yml | 2 +- Changelog.md | 2 +- composer.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 85869c2..09259d2 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -9,7 +9,7 @@ jobs: strategy: matrix: php: ['8.2', '8.3'] - laravel: ['10.38', '10.48', '11.0'] + laravel: ['10.43', '10.48', '11.0'] name: PHP ${{ matrix.php }} Laravel ${{ matrix.laravel }} steps: - name: Checkout diff --git a/Changelog.md b/Changelog.md index 28c22d9..598a556 100644 --- a/Changelog.md +++ b/Changelog.md @@ -10,7 +10,7 @@ - Dropped Enum v3 Support - Added PHP 8.3 Support - Added Laravel 11 Support -- Changed minimum Laravel version to v10.38.2 +- Changed minimum Laravel version to v10.43 - Changed minimal Enum requirement to v4.2 - BC: Added the `getRemoteId()` method to the `PaymentRequest` interface - BC: Added the following methods to the `Payment` interface: diff --git a/composer.json b/composer.json index 3abbeb7..2c6899b 100644 --- a/composer.json +++ b/composer.json @@ -20,7 +20,7 @@ "php": "^8.2", "konekt/concord": "^1.13", "konekt/enum": "^4.2", - "laravel/framework": "^10.38.2|^11.0", + "laravel/framework": "^10.43|^11.0", "vanilo/contracts": "^4.0", "vanilo/support": "^4.0" },