Skip to content

Commit

Permalink
Adding support for Laravel 11
Browse files Browse the repository at this point in the history
  • Loading branch information
aglipanci committed Mar 12, 2024
1 parent 459c081 commit e4c9d0d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit e4c9d0d

Please sign in to comment.