Skip to content

Commit

Permalink
Merge pull request #61 from cybercog/add-laravel-8-support
Browse files Browse the repository at this point in the history
Add Laravel 8 support
  • Loading branch information
antonkomarev committed Sep 8, 2020
2 parents c19576f + 42a73a1 commit b2bf30e
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 6 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Expand Up @@ -4,6 +4,12 @@ All notable changes to `cybercog/laravel-ban` will be documented in this file.

## [Unreleased]

## [4.3.0] - 2020-09-09

### Added

- ([#61]) Added Laravel 8.x support

## [4.2.1] - 2020-03-06

### Added
Expand Down Expand Up @@ -131,7 +137,8 @@ All notable changes to `cybercog/laravel-ban` will be documented in this file.

- Initial release

[Unreleased]: https://github.com/cybercog/laravel-ban/compare/4.2.1...master
[Unreleased]: https://github.com/cybercog/laravel-ban/compare/4.3.0...master
[4.3.0]: https://github.com/cybercog/laravel-ban/compare/4.2.1...4.3.0
[4.2.1]: https://github.com/cybercog/laravel-ban/compare/4.2.0...4.2.1
[4.2.0]: https://github.com/cybercog/laravel-ban/compare/4.1.0...4.2.0
[4.1.0]: https://github.com/cybercog/laravel-ban/compare/4.0.0...4.1.0
Expand All @@ -146,6 +153,7 @@ All notable changes to `cybercog/laravel-ban` will be documented in this file.
[2.0.1]: https://github.com/cybercog/laravel-ban/compare/2.0.0...2.0.1
[2.0.0]: https://github.com/cybercog/laravel-ban/compare/1.0.0...2.0.0

[#61]: https://github.com/cybercog/laravel-ban/pull/61
[#50]: https://github.com/cybercog/laravel-ban/pull/50
[#48]: https://github.com/cybercog/laravel-ban/pull/48
[#35]: https://github.com/cybercog/laravel-ban/pull/35
Expand Down
11 changes: 6 additions & 5 deletions composer.json
Expand Up @@ -36,14 +36,15 @@
},
"require": {
"php": "^7.1.3",
"illuminate/database": "^5.5|^6.0|^7.0",
"illuminate/events": "^5.5|^6.0|^7.0",
"illuminate/support": "^5.5|^6.0|^7.0"
"illuminate/database": "^5.5|^6.0|^7.0|^8.0",
"illuminate/events": "^5.5|^6.0|^7.0|^8.0",
"illuminate/support": "^5.5|^6.0|^7.0|^8.0"
},
"require-dev": {
"laravel/legacy-factories": "^1.0",
"mockery/mockery": "^1.0",
"orchestra/database": "^3.5|^4.0|^5.0",
"orchestra/testbench": "^3.5|^4.0|^5.0",
"orchestra/database": "^3.5|^4.0|^5.0|^6.0",
"orchestra/testbench": "^3.5|^4.0|^5.0|^6.0",
"phpunit/phpunit": "^7.5|^8.0|^9.0"
},
"autoload": {
Expand Down

0 comments on commit b2bf30e

Please sign in to comment.