From b3e3720596874b2f092d5fa1d8f5fddb17f774ac Mon Sep 17 00:00:00 2001 From: Attila Fulop <1162360+fulopattila122@users.noreply.github.com> Date: Mon, 8 Jan 2024 15:42:20 +0200 Subject: [PATCH] Added Laravel 11 support (experimental, pre-release) --- .github/workflows/tests.yml | 8 ++++++-- Changelog.md | 5 +++++ composer.json | 6 +++--- 3 files changed, 14 insertions(+), 5 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index d6b58ed..f9c9021 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -9,13 +9,17 @@ jobs: strategy: matrix: php: ['8.0', '8.1', '8.2', '8.3'] - laravel: ['9.2', '9.52', '10.0', '10.32'] + laravel: ['9.2', '9.52', '10.0', '10.39', '11.x'] enum: ['2', '3', '4'] exclude: - php: '8.0' laravel: '10.0' - php: '8.0' - laravel: '10.32' + laravel: '10.39' + - php: '8.0' + laravel: '11.x' + - php: '8.1' + laravel: '11.x' name: PHP ${{ matrix.php }} Laravel ${{ matrix.laravel }} Enum ${{ matrix.enum }} steps: - name: Checkout diff --git a/Changelog.md b/Changelog.md index 8dfed5c..8bef2f9 100644 --- a/Changelog.md +++ b/Changelog.md @@ -2,6 +2,11 @@ ## 1.X Series +### Unreleased +##### 2024-XX-YY + +- Added Laravel 11 support (pre-release) + ### 1.13.1 ##### 2023-11-17 diff --git a/composer.json b/composer.json index 414add7..d094619 100644 --- a/composer.json +++ b/composer.json @@ -14,13 +14,13 @@ }, "require": { "php": "^8.0", - "illuminate/support": "^9.2|^10.0", - "illuminate/console": "^9.2|^10.0", + "illuminate/support": "^9.2|^10.0|^11.0", + "illuminate/console": "^9.2|^10.0|^11.0", "konekt/enum": "^2.1|^3.0|^4.0", "konekt/enum-eloquent": "^1.7" }, "require-dev": { - "orchestra/testbench": "^7.0|^8.0", + "orchestra/testbench": "^7.0|^8.0|^9.0", "phpunit/phpunit" : "9 - 10" }, "autoload": {