From e4c9d0d42f401f7dbbec9f3dc204793308b61591 Mon Sep 17 00:00:00 2001 From: Agli Panci Date: Tue, 12 Mar 2024 15:58:01 +0100 Subject: [PATCH] Adding support for Laravel 11 --- CHANGELOG.md | 6 ++++++ README.md | 2 +- composer.json | 4 ++-- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ee8494c..4a6bbf0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## 3.0.0 +- Adding support for Laravel 11 + +## 2.0.0 +- Adding support for Laravel 10 + ## 1.4.0 - Feature: Add `caseRaw` support diff --git a/README.md b/README.md index 6af11f5..5e66b00 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Laravel Eloquent CASE Statement Support ![Test Status](https://img.shields.io/github/actions/workflow/status/aglipanci/laravel-eloquent-case/run-tests.yml?branch=main) -This packages adds [CASE](https://dev.mysql.com/doc/refman/5.7/en/flow-control-functions.html#operator_case) statement support to Laravel Query Builder. It supports Laravel 8.x, 9.x & 10.x. +This packages adds [CASE](https://dev.mysql.com/doc/refman/5.7/en/flow-control-functions.html#operator_case) statement support to Laravel Query Builder. It supports Laravel 8.x, 9.x, 10.x & 11.x. ## Usage diff --git a/composer.json b/composer.json index faec7ac..c74c15e 100644 --- a/composer.json +++ b/composer.json @@ -17,8 +17,8 @@ ], "require": { "php": "^7.4|^8.0", - "illuminate/database": "^8.0|^9.0|^10", - "illuminate/support": "^8.0|^9.0|^10" + "illuminate/database": "^8.0|^9.0|^10|^11", + "illuminate/support": "^8.0|^9.0|^10|^11" }, "require-dev": { "friendsofphp/php-cs-fixer": "^3.6",