File tree Expand file tree Collapse file tree 3 files changed +17
-10
lines changed
Expand file tree Collapse file tree 3 files changed +17
-10
lines changed Original file line number Diff line number Diff line change 22
33All 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+ ## 2.0.1 - 2020-02-23
11+
12+ ### Changed
13+ - Defer registering permissions on the Gate instance until it's resolved
14+
515## 2.0.0 - 2020-02-20
616
717### Added
8- - Support of Laravel 6
18+ - Support of Laravel 6.x
919
1020## 1.10.1 - 2018-09-16
1121
Original file line number Diff line number Diff 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
6968You can install the package via composer:
7069
7170``` bash
7271composer require mostafamaklad/laravel-permission-mongodb
7372```
7473
75- > For Laravel 5 use version 1.x
76-
7774You can publish [ the migration] ( database/migrations/create_permission_collections.php.stub ) with:
7875
7976``` bash
Original file line number Diff line number Diff line change 3030 }
3131 ],
3232 "require" : {
33- "php" : " >=7.1 " ,
34- "illuminate/auth" : " ^6 .0" ,
35- "illuminate/container" : " ^6 .0" ,
36- "illuminate/contracts" : " ^6 .0" ,
33+ "php" : " >=7.0 " ,
34+ "illuminate/auth" : " ^5.2|^6.0|^7 .0" ,
35+ "illuminate/container" : " ^5.2|^6.0|^7 .0" ,
36+ "illuminate/contracts" : " ^5.2|^6.0|^7 .0" ,
3737 "jenssegers/mongodb" : " ^3.0"
3838 },
3939 "require-dev" : {
4040 "monolog/monolog" : " ^1.23" ,
41- "orchestra/testbench" : " ^4.0" ,
42- "phpunit/phpunit" : " ^8.0" ,
41+ "orchestra/testbench" : " ^3.2|^ 4.0" ,
42+ "phpunit/phpunit" : " ^5.7|^6.0|^7.0|^ 8.0" ,
4343 "squizlabs/php_codesniffer" : " ^3.1"
4444 },
4545 "autoload" : {
You can’t perform that action at this time.
0 commit comments