Skip to content

Commit

Permalink
🔖 Laravel 7.x support
Browse files Browse the repository at this point in the history
  • Loading branch information
MarceauKa committed Mar 3, 2020
1 parent 46130fc commit ff0bf9e
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 6 deletions.
4 changes: 4 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 1.6.0

- Laravel 7.x support

## 1.5.2

- Update polymorphic relation [#18](https://github.com/404labfr/laravel-auth-checker/pull/18)
Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@
"laravel-plugin"
],
"require": {
"php": "^7.2",
"laravel/framework": "^6.0",
"php": ">=7.2",
"laravel/framework": "^6.0 | ^7.0",
"jenssegers/agent": "^2.6"
},
"require-dev": {
"phpunit/phpunit": "^8.0",
"orchestra/testbench": "^4.0",
"orchestra/database": "^4.0"
"phpunit/phpunit": "^7.5 | ^8.0",
"orchestra/testbench": "^4.0 | ^5.0",
"orchestra/database": "^4.0 | ^5.0"
},
"license": "MIT",
"authors": [
Expand Down
10 changes: 9 additions & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,17 @@

## Requirements

- Laravel 6.0
- Laravel 6.x or 7.x
- PHP >= 7.2

### Laravel support

| Version | Release |
|:-------------:|:-------------:|
| 6.x, 7.x | 1.6 |
| 5.8 | 1.2 |
| 5.7, 5.6 | 1.1 |

**See 1.2 branch for Laravel < 6**
**See 1.1 branch for Laravel < 5.7**

Expand Down

0 comments on commit ff0bf9e

Please sign in to comment.