Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Laravel 5.7 support #26

Merged
merged 1 commit into from
Sep 9, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 13 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,25 @@

All notable changes to `laravel-ban` will be documented in this file.

## [3.2.0] - 2018-09-09

### Added

- ([#26](https://github.com/cybercog/laravel-ban/pull/26)) Laravel 5.7 support
- ([#25](https://github.com/cybercog/laravel-ban/pull/25)) Middleware to force logout banned users

## [3.1.0] - 2018-02-08

### Added

- Laravel 5.6 support ([#18](https://github.com/cybercog/laravel-ban/pull/18))
- ([#18](https://github.com/cybercog/laravel-ban/pull/18)) Laravel 5.6 support

## [3.0.0] - 2017-08-27

### Added

- Laravel 5.5 support ([#7](https://github.com/cybercog/laravel-ban/pull/7))
- Add package auto discovery for L5.5 ([#8](https://github.com/cybercog/laravel-ban/pull/8))
- ([#7](https://github.com/cybercog/laravel-ban/pull/7)) Laravel 5.5 support
- ([#8](https://github.com/cybercog/laravel-ban/pull/8)) Add package auto discovery for L5.5
- Auto-loading migrations

### Changed
Expand All @@ -32,7 +39,7 @@ All notable changes to `laravel-ban` will be documented in this file.

### Removed

- Dropped Laravel Ownership Dependency ([#9](https://github.com/cybercog/laravel-ban/pull/9))
- ([#9](https://github.com/cybercog/laravel-ban/pull/9)) Dropped Laravel Ownership Dependency
- Removed `owner` method from Ban model
- Removed `getOwner` method from Ban model

Expand All @@ -50,7 +57,7 @@ All notable changes to `laravel-ban` will be documented in this file.

### Changed

- Events properties are public now: [#4](https://github.com/cybercog/laravel-ban/pull/4)
- [#4](https://github.com/cybercog/laravel-ban/pull/4) Events properties are public now

## [2.0.0] - 2017-03-06

Expand All @@ -63,6 +70,7 @@ All notable changes to `laravel-ban` will be documented in this file.

- Initial release

[3.2.0]: https://github.com/cybercog/laravel-ban/compare/3.1.0...3.2.0
[3.1.0]: https://github.com/cybercog/laravel-ban/compare/3.0.0...3.1.0
[3.0.0]: https://github.com/cybercog/laravel-ban/compare/2.1.1...3.0.0
[2.1.0]: https://github.com/cybercog/laravel-ban/compare/2.0.1...2.1.0
Expand Down
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,15 @@
},
"require": {
"php": "^5.6|^7.0",
"illuminate/database": "~5.1.20|~5.2|~5.3|~5.4|~5.5|~5.6",
"illuminate/events": "~5.1.20|~5.2|~5.3|~5.4|~5.5|~5.6",
"illuminate/support": "~5.1.20|~5.2|~5.3|~5.4|~5.5|~5.6"
"illuminate/database": "~5.1.20|~5.2|~5.3|~5.4|~5.5|~5.6|~5.7",
"illuminate/events": "~5.1.20|~5.2|~5.3|~5.4|~5.5|~5.6|~5.7",
"illuminate/support": "~5.1.20|~5.2|~5.3|~5.4|~5.5|~5.6|~5.7"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.10",
"mockery/mockery": "^0.9.8",
"orchestra/database": "~3.4.0|~3.5.0|~3.6.0",
"orchestra/testbench": "~3.4.0|~3.5.0|~3.6.0",
"mockery/mockery": "^1.0",
"orchestra/database": "~3.4.0|~3.5.0|~3.6.0|~3.7.0",
"orchestra/testbench": "~3.4.0|~3.5.0|~3.6.0|~3.7.0",
"phpunit/phpunit": "^5.7|^6.0|^7.0"
},
"autoload": {
Expand Down