Skip to content

Commit

Permalink
Add compatibility for laravel 7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas committed Mar 10, 2020
1 parent 52d0901 commit 4a21bb7
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 33 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ENTRUST (Laravel 6 Package)

Entrust is a succinct and flexible way to add Role-based Permissions to **Laravel 6**.
Entrust is a succinct and flexible way to add Role-based Permissions to **Laravel 7**.

## Contents

Expand All @@ -27,7 +27,7 @@ Entrust is a succinct and flexible way to add Role-based Permissions to **Larave

## Installation

1) In order to install Laravel 6 Entrust, just add the following to your composer.json. Then run `composer update`:
1) In order to install Laravel 7 Entrust, just add the following to your composer.json. Then run `composer update`:

```json
"code-orange/entrust": "^2.0"
Expand Down
13 changes: 6 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "code-orange/entrust",
"description": "This package provides a flexible way to add Role-based Permissions to Laravel 6",
"description": "This package provides a flexible way to add Role-based Permissions to Laravel 7",
"keywords": ["laravel","illuminate","auth","roles","acl","permission"],
"license": "MIT",
"authors": [
Expand All @@ -23,15 +23,14 @@
],
"require": {
"php": ">=7.2",
"illuminate/console": "~6.0",
"illuminate/support": "~6.0",
"illuminate/cache": "~6.0"
"illuminate/console": "^7.0",
"illuminate/support": "^7.0",
"illuminate/cache": "^7.0"
},
"require-dev": {
"phpunit/phpunit": "^8.0",
"phpunit/phpunit": "^8.5",
"mockery/mockery": "^1.0",
"illuminate/database": "~6.0",
"sami/sami": "dev-master"
"illuminate/database": "^7.0"
},
"autoload": {
"classmap": [
Expand Down
24 changes: 0 additions & 24 deletions docs.php

This file was deleted.

0 comments on commit 4a21bb7

Please sign in to comment.