From f69510bbd8b681f4c696590ebce3bba0a3d1fb5d Mon Sep 17 00:00:00 2001 From: Attila Fulop <1162360+fulopattila122@users.noreply.github.com> Date: Wed, 13 Mar 2024 10:34:52 +0200 Subject: [PATCH] Added Laravel 11 Support --- .github/workflows/tests.yml | 2 +- Changelog.md | 1 + composer.json | 6 +++--- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 955303c..85869c2 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.46'] + laravel: ['10.38', '10.48', '11.0'] name: PHP ${{ matrix.php }} Laravel ${{ matrix.laravel }} steps: - name: Checkout diff --git a/Changelog.md b/Changelog.md index c87c666..d80cf70 100644 --- a/Changelog.md +++ b/Changelog.md @@ -9,6 +9,7 @@ - Dropped Laravel 9 Support - Dropped Enum v3 Support - Added PHP 8.3 Support +- Added Laravel 11 Support - Changed minimum Laravel version to v10.38.2 - Changed minimal Enum requirement to v4.2 - BC: Changed the `PaymentMethod` interface into Configurable diff --git a/composer.json b/composer.json index 55e4683..3abbeb7 100644 --- a/composer.json +++ b/composer.json @@ -20,13 +20,13 @@ "php": "^8.2", "konekt/concord": "^1.13", "konekt/enum": "^4.2", - "laravel/framework": "^10.38.2", + "laravel/framework": "^10.38.2|^11.0", "vanilo/contracts": "^4.0", "vanilo/support": "^4.0" }, "require-dev": { - "phpunit/phpunit": "^9.0", - "orchestra/testbench": "^8.0" + "phpunit/phpunit": "^10.0", + "orchestra/testbench": "^8.0|^9.0" }, "autoload": { "psr-4": { "Vanilo\\Payment\\": "" }