Skip to content

Commit a9f29b9

Browse files
authored
Added support for Laravel 10.x (#15)
1 parent bc4bc38 commit a9f29b9

File tree

4 files changed

+17
-14
lines changed

4 files changed

+17
-14
lines changed

.github/workflows/run-tests-l9.yml renamed to .github/workflows/run-tests-l10.yml

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

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

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

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

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

.phprc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
php8.1

README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,12 @@
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 | 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 | composer require 1ff/laravel-mongodb-session:^4.0 |
6+
|-------------------------|-------------------------|---------------------------------------------------|
7+
| 10.x | 5.x.x | composer require 1ff/laravel-mongodb-session:^5.0 |
8+
| 9.x | 4.x.x | composer require 1ff/laravel-mongodb-session:^4.0 |
9+
| 8.x | 3.x.x | composer require 1ff/laravel-mongodb-session:^3.0 |
10+
| 7.x | 2.x.x | composer require 1ff/laravel-mongodb-session:^2.0 |
11+
| 5.x.x, 6.x | 1.x.x | composer require 1ff/laravel-mongodb-session:^1.0 |
1112

1213
Installation
1314
------------

composer.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@
22
"name": "1ff/laravel-mongodb-session",
33
"description": "A mongodb session driver for laravel",
44
"type": "library",
5-
"version": "4.0.1",
5+
"version": "5.0.0",
66
"require": {
7-
"jenssegers/mongodb": "~3.9",
8-
"illuminate/session": "^9.0"
7+
"php": "^8.1",
8+
"illuminate/session": "^10.0",
9+
"mongodb/laravel-mongodb": "dev-master"
910
},
1011
"license": "MIT",
1112
"authors": [

0 commit comments

Comments
 (0)