Skip to content

Commit

Permalink
Add Laravel 11 support
Browse files Browse the repository at this point in the history
  • Loading branch information
antonkomarev committed Mar 9, 2024
1 parent e1e13ad commit 87ad21a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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
Expand All @@ -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
Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down Expand Up @@ -75,5 +75,5 @@
}
},
"minimum-stability": "dev",
"prefer-stable" : true
"prefer-stable": true
}

0 comments on commit 87ad21a

Please sign in to comment.