Skip to content

Commit

Permalink
Merge pull request #14 from laravel-shift/l10-compatibility
Browse files Browse the repository at this point in the history
Laravel 10.x Compatibility
  • Loading branch information
gghughunishvili authored Mar 19, 2023
2 parents bdd642a + 9e127a1 commit 7a702b3
Showing 1 changed file with 17 additions and 9 deletions.
26 changes: 17 additions & 9 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
{
"name": "gghughunishvili/entrust",
"description": "This package provides a flexible way to add Role-based Permissions to Laravel/Lumen 6",
"keywords": ["laravel", "lumen","illuminate","auth","roles","acl","permission"],
"keywords": [
"laravel",
"lumen",
"illuminate",
"auth",
"roles",
"acl",
"permission"
],
"license": "MIT",
"authors": [
{
Expand All @@ -27,14 +35,14 @@
],
"require": {
"php": ">=7.2",
"illuminate/console": "~6.0|^7.0|^8.0|^9.0",
"illuminate/support": "~6.0|^7.0|^8.0|^9.0",
"illuminate/cache": "~6.0|^7.0|^8.0|^9.0"
"illuminate/console": "~6.0|^7.0|^8.0|^9.0|^10.0",
"illuminate/support": "~6.0|^7.0|^8.0|^9.0|^10.0",
"illuminate/cache": "~6.0|^7.0|^8.0|^9.0|^10.0"
},
"require-dev": {
"phpunit/phpunit": "^8.0|^9.0",
"mockery/mockery": "^1.0",
"illuminate/database": "~6.0|^7.0|^8.0|^9.0"
"illuminate/database": "~6.0|^7.0|^8.0|^9.0|^10.0"
},
"autoload": {
"classmap": [
Expand All @@ -44,12 +52,12 @@
"Zizaco\\Entrust\\": "src/Entrust/"
}
},
"extra":{
"laravel":{
"providers":[
"extra": {
"laravel": {
"providers": [
"Zizaco\\Entrust\\EntrustServiceProvider"
],
"aliases":{
"aliases": {
"Entrust": "Zizaco\\Entrust\\EntrustFacade"
}
}
Expand Down

0 comments on commit 7a702b3

Please sign in to comment.