Skip to content

Commit 8a00693

Browse files
committed
Remove support for Laravel 10
1 parent ebda1fa commit 8a00693

File tree

3 files changed

+9
-13
lines changed

3 files changed

+9
-13
lines changed

.github/workflows/build-ci.yml

+2-7
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,13 @@ jobs:
2020
- "6.0"
2121
- "7.0"
2222
php:
23-
- "8.1"
2423
- "8.2"
2524
- "8.3"
2625
laravel:
27-
- "10.*"
2826
- "11.*"
2927
include:
30-
- php: "8.1"
31-
laravel: "10.*"
28+
- php: "8.2"
29+
laravel: "11.*"
3230
mongodb: "5.0"
3331
mode: "low-deps"
3432
os: "ubuntu-latest"
@@ -37,9 +35,6 @@ jobs:
3735
mongodb: "7.0"
3836
mode: "ignore-php-req"
3937
os: "ubuntu-latest"
40-
exclude:
41-
- php: "8.1"
42-
laravel: "11.*"
4338

4439
steps:
4540
- uses: "actions/checkout@v4"

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ All notable changes to this project will be documented in this file.
33

44
## [5.0.0] - next
55

6+
* Remove support for Laravel 10 by @GromNaN in [#3123](https://github.com/mongodb/laravel-mongodb/pull/3123)
67
* **BREAKING CHANGE** Use `id` as an alias for `_id` in commands and queries for compatibility with Eloquent packages by @GromNaN in [#3040](https://github.com/mongodb/laravel-mongodb/pull/3040)
78
* **BREAKING CHANGE** Make Query\Builder return objects instead of array to match Laravel behavior by @GromNaN in [#3107](https://github.com/mongodb/laravel-mongodb/pull/3107)
89

composer.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@
2222
],
2323
"license": "MIT",
2424
"require": {
25-
"php": "^8.1",
25+
"php": "^8.2",
2626
"ext-mongodb": "^1.15",
2727
"composer-runtime-api": "^2.0.0",
28-
"illuminate/cache": "^10.36|^11",
29-
"illuminate/container": "^10.0|^11",
30-
"illuminate/database": "^10.30|^11",
31-
"illuminate/events": "^10.0|^11",
32-
"illuminate/support": "^10.0|^11",
28+
"illuminate/cache": "^11",
29+
"illuminate/container": "^11",
30+
"illuminate/database": "^11",
31+
"illuminate/events": "^11",
32+
"illuminate/support": "^11",
3333
"mongodb/mongodb": "^1.15"
3434
},
3535
"require-dev": {

0 commit comments

Comments
 (0)