Skip to content

Commit

Permalink
Added support for Laravel 10.x (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
spont4e committed Sep 1, 2023
1 parent bc4bc38 commit a9f29b9
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 14 deletions.
@@ -1,11 +1,11 @@
name: "Run Tests - Laravel 8"
name: "Run Tests - Laravel 10"

on:
push:
branches: [ v4.x ]
branches: [ v5.x ]

pull_request:
branches: [ v4.x ]
branches: [ v5.x ]

jobs:
tests:
Expand All @@ -14,10 +14,10 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [ 8.0, 8.1 ]
laravel: [ 9.* ]
php: [ 8.1 ]
laravel: [ 10.* ]
include:
- laravel: 9.*
- laravel: 10.*

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

Expand Down
1 change: 1 addition & 0 deletions .phprc
@@ -0,0 +1 @@
php8.1
11 changes: 6 additions & 5 deletions README.md
Expand Up @@ -3,11 +3,12 @@
A MongoDB session driver for Laravel

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

Installation
------------
Expand Down
7 changes: 4 additions & 3 deletions composer.json
Expand Up @@ -2,10 +2,11 @@
"name": "1ff/laravel-mongodb-session",
"description": "A mongodb session driver for laravel",
"type": "library",
"version": "4.0.1",
"version": "5.0.0",
"require": {
"jenssegers/mongodb": "~3.9",
"illuminate/session": "^9.0"
"php": "^8.1",
"illuminate/session": "^10.0",
"mongodb/laravel-mongodb": "dev-master"
},
"license": "MIT",
"authors": [
Expand Down

0 comments on commit a9f29b9

Please sign in to comment.