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

Commit f81a55e

Browse files
committed
Fix compatability with Laravel 5.8.x, 6.x and jenssegers/mongodb package
1 parent 61c6970 commit f81a55e

File tree

4 files changed

+10
-11
lines changed

4 files changed

+10
-11
lines changed

.github/workflows/run-tests-l5.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,10 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
php: [7.3, 7.4]
17+
php: [7.2, 7.3, 7.4]
1818
laravel: [5.*]
1919
include:
2020
- laravel: 5.*
21-
testbench: 3.0
2221

2322
name: P${{ matrix.php }} - L${{ matrix.laravel }}
2423

.github/workflows/run-tests-l6.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,10 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
php: [7.3, 7.4]
17+
php: [7.2, 7.3, 7.4]
1818
laravel: [6.*]
1919
include:
2020
- laravel: 6.*
21-
testbench: 3.0
2221

2322
name: P${{ matrix.php }} - L${{ matrix.laravel }}
2423

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,11 @@
33
A MongoDB session driver for Laravel
44

55
| **Laravel<br/>Version** | **Package<br/>Version** | **Install using<br/>this command** |
6-
|---------------------|---------------------|---------------------------------------------------|
7-
| 5.x.x, 6.x | 1.x.x | composer require 1ff/laravel-mongodb-session:^1.0 |
8-
| 7.x, 8.x | 2.x.x | Comming soon |
9-
| 9.x | 3.x.x | Comming soon |
6+
|------------------------|-------------------------|---------------------------------------------------|
7+
| 5.x.x, 6.x | 1.x.x | composer require 1ff/laravel-mongodb-session:^1.0 |
8+
| 7.x | 2.x.x | composer require 1ff/laravel-mongodb-session:^2.0 |
9+
| 8.x | 3.x.x | composer require 1ff/laravel-mongodb-session:^3.0 |
10+
| 9.x | 4.x.x | Comming soon |
1011

1112
Installation
1213
------------

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": "1.1.1",
5+
"version": "1.1.2",
66
"require": {
7-
"jenssegers/mongodb": "3.*",
8-
"illuminate/session": "5.*|6.*"
7+
"jenssegers/mongodb": "^3.5|^3.6",
8+
"illuminate/session": "^5.0|^6.0"
99
},
1010
"license": "MIT",
1111
"authors": [

0 commit comments

Comments
 (0)