Skip to content

Commit

Permalink
Merge pull request #26 from cybercog/feature/laravel-57-support
Browse files Browse the repository at this point in the history
Add Laravel 5.7 support
  • Loading branch information
antonkomarev committed Sep 9, 2018
2 parents 0ed652c + 2634ac3 commit b75def6
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 11 deletions.
18 changes: 13 additions & 5 deletions CHANGELOG.md
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
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

0 comments on commit b75def6

Please sign in to comment.