From efae2fb0858e62443b6bc3c261143a1d263c2d52 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 | 4 ++-- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index c4c2790..4248d02 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 97a9a9f..ec5cbeb 100644 --- a/Changelog.md +++ b/Changelog.md @@ -8,6 +8,7 @@ - Dropped PHP 8.0 & PHP 8.1 Support - Dropped Laravel 9 Support - Added PHP 8.3 Support +- Added Laravel 11 Support - Changed minimum Laravel version to v10.38.2 - Added the `Stockable` interface - Added the `Merchant` interface diff --git a/composer.json b/composer.json index b834a98..dd2a85f 100644 --- a/composer.json +++ b/composer.json @@ -18,11 +18,11 @@ ], "require": { "php": "^8.2", - "illuminate/support": "^10.38.2", + "illuminate/support": "^10.38.2|^11.0", "nette/schema": "^1.2.5" }, "require-dev": { - "phpunit/phpunit" : "^9.0" + "phpunit/phpunit": "^10.0" }, "autoload": { "psr-4": { "Vanilo\\Contracts\\": "" }