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

Commit 1bdc2b3

Browse files
authored
Added support for Laravel 9.x (#13)
1 parent 32d0437 commit 1bdc2b3

File tree

3 files changed

+9
-9
lines changed

3 files changed

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

33
on:
44
push:
5-
branches: [ v3.x ]
5+
branches: [ v4.x ]
66

77
pull_request:
8-
branches: [ v3.x ]
8+
branches: [ v4.x ]
99

1010
jobs:
1111
tests:
@@ -14,10 +14,10 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
php: [ 7.3, 7.4, 8.0 ]
18-
laravel: [ 8.* ]
17+
php: [ 8.0, 8.1 ]
18+
laravel: [ 9.* ]
1919
include:
20-
- laravel: 8.*
20+
- laravel: 9.*
2121

2222
name: P${{ matrix.php }} - L${{ matrix.laravel }}
2323

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ A MongoDB session driver for Laravel
77
| 5.x.x, 6.x | 1.x.x | composer require 1ff/laravel-mongodb-session:^1.0 |
88
| 7.x | 2.x.x | composer require 1ff/laravel-mongodb-session:^2.0 |
99
| 8.x | 3.x.x | composer require 1ff/laravel-mongodb-session:^3.0 |
10-
| 9.x | 4.x.x | Comming soon |
10+
| 9.x | 4.x.x | composer require 1ff/laravel-mongodb-session:^4.0 |
1111

1212
Installation
1313
------------

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
"name": "1ff/laravel-mongodb-session",
33
"description": "A mongodb session driver for laravel",
44
"type": "library",
5-
"version": "3.0.0",
5+
"version": "4.0.0",
66
"require": {
7-
"jenssegers/mongodb": "~3.8",
8-
"illuminate/session": "^8.0"
7+
"jenssegers/mongodb": "~3.9",
8+
"illuminate/session": "^9.0"
99
},
1010
"license": "MIT",
1111
"authors": [

0 commit comments

Comments
 (0)