diff --git a/CHANGELOG.md b/CHANGELOG.md index 5e789e5..88bd11b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,7 @@ All notable changes to `cybercog/laravel-ownership` will be documented in this f ### Added -- ([#28]) Added Laravel 11 support +- ([#32]) Added Laravel 11 support ## [5.5.0] - 2023-02-24 @@ -135,7 +135,8 @@ All notable changes to `cybercog/laravel-ownership` will be documented in this f - Initial release -[Unreleased]: https://github.com/cybercog/laravel-ownership/compare/5.5.0...master +[Unreleased]: https://github.com/cybercog/laravel-ownership/compare/5.6.0...master +[5.6.0]: https://github.com/cybercog/laravel-ownership/compare/5.4.0...5.6.0 [5.5.0]: https://github.com/cybercog/laravel-ownership/compare/5.4.0...5.5.0 [5.4.0]: https://github.com/cybercog/laravel-ownership/compare/5.3.0...5.4.0 [5.3.0]: https://github.com/cybercog/laravel-ownership/compare/5.2.0...5.3.0 @@ -150,6 +151,7 @@ All notable changes to `cybercog/laravel-ownership` will be documented in this f [2.0.0]: https://github.com/cybercog/laravel-ownership/compare/1.0.0...2.0.0 [Upgrade instructions]: UPGRADING.md +[#32]: https://github.com/cybercog/laravel-ownership/pull/32 [#28]: https://github.com/cybercog/laravel-ownership/pull/28 [#27]: https://github.com/cybercog/laravel-ownership/pull/27 [#25]: https://github.com/cybercog/laravel-ownership/pull/25 diff --git a/composer.json b/composer.json index a22a9fd..24b23b8 100644 --- a/composer.json +++ b/composer.json @@ -41,13 +41,13 @@ }, "require": { "php": "^8.0", - "illuminate/database": "^9.0|^10.0", - "illuminate/support": "^9.0|^10.0" + "illuminate/database": "^9.0|^10.0|^11.0", + "illuminate/support": "^9.0|^10.0|^11.0" }, "require-dev": { "mockery/mockery": "^1.0", - "orchestra/testbench": "^7.0|^8.0", - "phpunit/phpunit": "^9.6" + "orchestra/testbench": "^7.0|^8.0|^9.0", + "phpunit/phpunit": "^9.6|^10.5" }, "autoload": { "psr-4": { @@ -75,5 +75,5 @@ } }, "minimum-stability": "dev", - "prefer-stable" : true + "prefer-stable": true }