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

Commit d24a515

Browse files
authored
Added support for Laravel 7.x (#3)
* Added GitHub actions to test compatibility * Added support for Laravel 7.x
1 parent 2db6217 commit d24a515

File tree

3 files changed

+9
-44
lines changed

3 files changed

+9
-44
lines changed

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

Lines changed: 0 additions & 35 deletions
This file was deleted.
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
name: "Run Tests - Laravel 5"
1+
name: "Run Tests - Laravel 7"
22

33
on:
44
push:
5-
branches: [ v1.x ]
5+
branches: [ v2.x ]
66

77
pull_request:
8-
branches: [ v1.x ]
8+
branches: [ v2.x ]
99

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

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

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.2",
5+
"version": "2.0.0",
66
"require": {
7-
"jenssegers/mongodb": "^3.5|^3.6",
8-
"illuminate/session": "^5.0|^6.0"
7+
"jenssegers/mongodb": "~3.7",
8+
"illuminate/session": "^7.0"
99
},
1010
"license": "MIT",
1111
"authors": [

0 commit comments

Comments
 (0)