Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update to laravel 6 #964

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
53 changes: 24 additions & 29 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,36 +1,31 @@
{
"name": "zizaco/entrust",
"description": "This package provides a flexible way to add Role-based Permissions to Laravel",
"keywords": ["laravel","illuminate","auth","roles","acl","permission"],
"keywords": ["laravel", "illuminate", "auth", "roles", "acl", "permission"],
"license": "MIT",
"authors": [
{
"name": "Zizaco Zizuini",
"email": "[email protected]"
},
{
"name": "Andrew Elkins",
"homepage": "http://andrewelkins.com"
},
{
"name": "Ben Batschelet",
"homepage": "http://github.com/bbatsche"
},
{
"name": "Michele Angioni",
"email": "[email protected]"
}
],
"authors": [{
"name": "Zizaco Zizuini",
"email": "[email protected]"
}, {
"name": "Andrew Elkins",
"homepage": "http://andrewelkins.com"
}, {
"name": "Ben Batschelet",
"homepage": "http://github.com/bbatsche"
}, {
"name": "Michele Angioni",
"email": "[email protected]"
}],
"require": {
"php": ">=5.5.0",
"illuminate/console": "~5.0",
"illuminate/support": "~5.0",
"illuminate/cache": "~5.0"
"illuminate/console": "~6.0",
"illuminate/support": "~6.0",
"illuminate/cache": "~6.0"
},
"require-dev": {
"phpunit/phpunit": "~4.1",
"phpunit/phpunit": "~9.0",
"mockery/mockery": "dev-master",
"illuminate/database": "~5.0",
"illuminate/database": "~6.0",
"sami/sami": "dev-master"
},
"autoload": {
Expand All @@ -41,12 +36,12 @@
"Zizaco\\Entrust\\": "src/Entrust/"
}
},
"extra":{
"laravel":{
"providers":[
"extra": {
"laravel": {
"providers": [
"Zizaco\\Entrust\\EntrustServiceProvider"
],
"aliases":{
"aliases": {
"Entrust": "Zizaco\\Entrust\\EntrustFacade"
}
}
Expand All @@ -57,4 +52,4 @@
]
},
"minimum-stability": "dev"
}
}