Skip to content

Commit 40ca6af

Browse files
authored
v6.x to master (#25)
* Added support for Laravel 10.x (#23) * Updated mongodb/laravel-mongodb (#24)
1 parent cf0cc5a commit 40ca6af

File tree

8 files changed

+18
-171
lines changed

8 files changed

+18
-171
lines changed

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

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

33
on:
44
push:
5-
branches: [ v5.x, master ]
5+
branches: [ v6.x, master ]
66

77
pull_request:
8-
branches: [ v5.x, master ]
8+
branches: [ v6.x, master ]
99

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

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

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

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

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

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

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

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

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

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

.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: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,12 @@ A MongoDB cache driver for Laravel
44

55
| **Laravel<br/>Version** | **Package<br/>Version** | **Install using<br/>this command** |
66
|-------------------------|-------------------------|----------------------------------------------------|
7-
| 5.7.x | 2.11.x | composer require 1ff/laravel-mongodb-cache:~2.11.0 |
8-
| 5.8.x, 6.x | 2.12.x | composer require 1ff/laravel-mongodb-cache:~2.12.0 |
9-
| 7.x | 3.x.x | composer require 1ff/laravel-mongodb-cache:^3.1 |
10-
| 8.x | 4.x.x | composer require 1ff/laravel-mongodb-cache:^4.1 |
7+
| 10.x | 6.x.x | composer require 1ff/laravel-mongodb-cache:^6.0 |
118
| 9.x | 5.x.x | composer require 1ff/laravel-mongodb-cache:^5.0 |
9+
| 8.x | 4.x.x | composer require 1ff/laravel-mongodb-cache:^4.1 |
10+
| 7.x | 3.x.x | composer require 1ff/laravel-mongodb-cache:^3.1 |
11+
| 5.8.x, 6.x | 2.12.x | composer require 1ff/laravel-mongodb-cache:~2.12.0 |
12+
| 5.7.x | 2.11.x | composer require 1ff/laravel-mongodb-cache:~2.11.0 |
1213

1314
Installation
1415
------------

composer.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,14 @@
22
"name": "1ff/laravel-mongodb-cache",
33
"description": "A mongodb cache driver for laravel",
44
"type": "library",
5-
"version": "5.0.0",
5+
"version": "6.0.1",
66
"require": {
7-
"jenssegers/mongodb": "~3.9",
8-
"illuminate/cache": "^9.0"
7+
"php": "^8.1",
8+
"illuminate/cache": "^10.0",
9+
"mongodb/laravel-mongodb": "4.0.0-ALPHA2"
910
},
1011
"require-dev": {
11-
"orchestra/testbench": "^7.0"
12+
"orchestra/testbench": "^8.0"
1213
},
1314
"license": "MIT",
1415
"authors": [

0 commit comments

Comments
 (0)