Skip to content

Commit 6e8e749

Browse files
authored
Merge branch 'v2.1' into master
2 parents 2db6327 + f45f154 commit 6e8e749

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

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

5+
## 2.1.0 - 2020-03-05
6+
7+
### Added
8+
- Support of Laravel 7.x
9+
10+
v2.1
511
## 2.0.1 - 2020-02-23
612

713
### Changed
@@ -10,7 +16,7 @@ All Notable changes to `laravel-permission-mongodb` will be documented in this f
1016
## 2.0.0 - 2020-02-20
1117

1218
### Added
13-
- Support of Laravel 6
19+
- Support of Laravel 6.x
1420

1521
## 1.10.1 - 2018-09-16
1622

README.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,16 +64,13 @@ $user->can('edit articles');
6464
## Installation
6565

6666
### Laravel
67-
This package can be used in Laravel 6.x and up.
6867

6968
You can install the package via composer:
7069

7170
``` bash
7271
composer require mostafamaklad/laravel-permission-mongodb
7372
```
7473

75-
> For Laravel 5 use version 1.x
76-
7774
You can publish [the migration](database/migrations/create_permission_collections.php.stub) with:
7875

7976
```bash

composer.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,13 @@
3434
"illuminate/auth": "^6.0",
3535
"illuminate/container": "^6.0",
3636
"illuminate/contracts": "^6.0",
37+
3738
"jenssegers/mongodb": "^3.0"
3839
},
3940
"require-dev": {
4041
"monolog/monolog": "^1.23",
41-
"orchestra/testbench": "^4.0",
42-
"phpunit/phpunit": "^8.0",
42+
"orchestra/testbench": "^3.2|^4.0",
43+
"phpunit/phpunit": "^5.7|^6.0|^7.0|^8.0",
4344
"squizlabs/php_codesniffer": "^3.1"
4445
},
4546
"autoload": {

0 commit comments

Comments
 (0)