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

Commit 89764df

Browse files
committed
Added support for Laravel 8.x
1 parent d24a515 commit 89764df

File tree

3 files changed

+38
-38
lines changed

3 files changed

+38
-38
lines changed

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

Lines changed: 0 additions & 35 deletions
This file was deleted.

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

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name: "Run Tests - Laravel 8"
2+
3+
on:
4+
push:
5+
branches: [ v3.x ]
6+
7+
pull_request:
8+
branches: [ v3.x ]
9+
10+
jobs:
11+
tests:
12+
13+
runs-on: ubuntu-latest
14+
strategy:
15+
fail-fast: false
16+
matrix:
17+
php: [ 7.3, 7.4, 8.0 ]
18+
laravel: [ 8.* ]
19+
include:
20+
- laravel: 8.*
21+
22+
name: P${{ matrix.php }} - L${{ matrix.laravel }}
23+
24+
steps:
25+
- name: Checkout code
26+
uses: actions/checkout@v2
27+
28+
- name: Setup PHP
29+
uses: shivammathur/setup-php@v2
30+
with:
31+
php-version: ${{ matrix.php }}
32+
extensions: pdo, sqlite, pdo_sqlite
33+
34+
- name: Install Dependencies
35+
run: composer install

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

0 commit comments

Comments
 (0)