Skip to content

Commit 8046ea7

Browse files
Merge pull request #120 from mostafamaklad/v3.1
V3.1
2 parents 669cfad + 5e268ff commit 8046ea7

File tree

3 files changed

+18
-3
lines changed

3 files changed

+18
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
All Notable changes to `laravel-permission-mongodb` will be documented in this file.
44

5+
## 3.1.0 - 2020-10-04
6+
7+
### Added
8+
- Support of Laravel 8.x
9+
510
## 3.0.0 - 2020-09-27
611

712
### Added

README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ $user->can('edit articles');
3535

3636
## Table of contents
3737
* [Installation](#installation)
38+
* [Laravel Compatibility](#laravel-compatibility)
3839
* [Laravel](#laravel)
3940
* [Lumen](#lumen)
4041
* [Usage](#usage)
@@ -63,6 +64,15 @@ $user->can('edit articles');
6364

6465
## Installation
6566

67+
### Laravel Compatibility
68+
69+
Laravel | Package
70+
:---------|:----------
71+
5.x | 1.x or 2.x or 3.x
72+
6.x | 2.x or 3.x
73+
7.x | 3.x
74+
8.x | 3.1.x
75+
6676
### Laravel
6777

6878
You can install the package via composer:

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@
3131
],
3232
"require": {
3333
"php": ">=7.2",
34-
"illuminate/auth": "^6.0|^7.0",
35-
"illuminate/container": "^6.0|^7.0",
36-
"illuminate/contracts": "^6.0|^7.0",
34+
"illuminate/auth": "^6.0|^7.0|^8.0",
35+
"illuminate/container": "^6.0|^7.0|^8.0",
36+
"illuminate/contracts": "^6.0|^7.0|^8.0",
3737
"jenssegers/mongodb": "^3.0"
3838
},
3939
"require-dev": {

0 commit comments

Comments
 (0)