Skip to content
This repository was archived by the owner on Jul 31, 2025. It is now read-only.

Commit 1b032a3

Browse files
committed
Update Laravel version to 12.x in workflows and dependencies
- Rename GitHub Actions workflow for Laravel version 12 - Change branch references from v6.x to v7.x - Update Laravel dependency from 11.* to 12.* - Adjust TestBench requirement to version 10.x in composer.json - Modify README to reflect updated package installation command for Laravel 12.x
1 parent 91d664a commit 1b032a3

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

.github/workflows/run-tests-l11.yml renamed to .github/workflows/run-tests-l12.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ name: "Run Tests - Laravel 11"
22

33
on:
44
push:
5-
branches: [ v6.x, master ]
5+
branches: [ v7.x, master ]
66

77
pull_request:
8-
branches: [ v6.x, master ]
8+
branches: [ v7.x, master ]
99

1010
jobs:
1111
tests:
@@ -27,10 +27,10 @@ jobs:
2727
fail-fast: false
2828
matrix:
2929
php: [ 8.2 ]
30-
laravel: [ 11.* ]
30+
laravel: [ 12.* ]
3131
include:
32-
- laravel: 11.*
33-
testbench: 11.*
32+
- laravel: 12.*
33+
testbench: 12.*
3434

3535
name: P${{ matrix.php }} - L${{ matrix.laravel }}
3636

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ A MongoDB session driver for Laravel
44

55
| **Laravel<br/>Version** | **Package<br/>Version** | **Install using<br/>this command** |
66
|-------------------------|-------------------------|---------------------------------------------------|
7+
| 12.x | 7.x.x | composer require 1ff/laravel-mongodb-session:^7.0 |
78
| 11.x | 6.x.x | composer require 1ff/laravel-mongodb-session:^6.0 |
89
| 10.x | 5.x.x | composer require 1ff/laravel-mongodb-session:^5.0 |
910
| 9.x | 4.x.x | composer require 1ff/laravel-mongodb-session:^4.0 |

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
"type": "library",
55
"require": {
66
"php": "^8.2",
7-
"illuminate/session": "^11.0",
7+
"illuminate/session": "^12.0",
88
"mongodb/laravel-mongodb": "^5.0",
99
"ext-mongodb": "*"
1010
},
1111
"require-dev": {
1212
"phpunit/phpunit": "^11.0",
13-
"orchestra/testbench": "^9.0"
13+
"orchestra/testbench": "^10.0"
1414
},
1515
"license": "MIT",
1616
"authors": [

0 commit comments

Comments
 (0)