update inbox list
This commit is contained in:
64
vendor/spatie/laravel-permission/composer.json
vendored
Normal file
64
vendor/spatie/laravel-permission/composer.json
vendored
Normal file
@@ -0,0 +1,64 @@
|
||||
{
|
||||
"name": "spatie/laravel-permission",
|
||||
"description": "Permission handling for Laravel 5.8 and up",
|
||||
"keywords": [
|
||||
"spatie",
|
||||
"laravel",
|
||||
"permission",
|
||||
"permissions",
|
||||
"roles",
|
||||
"acl",
|
||||
"rbac",
|
||||
"security"
|
||||
],
|
||||
"homepage": "https://github.com/spatie/laravel-permission",
|
||||
"license": "MIT",
|
||||
"authors": [
|
||||
{
|
||||
"name": "Freek Van der Herten",
|
||||
"email": "freek@spatie.be",
|
||||
"homepage": "https://spatie.be",
|
||||
"role": "Developer"
|
||||
}
|
||||
],
|
||||
"require": {
|
||||
"php" : "^7.2.5",
|
||||
"illuminate/auth": "^5.8|^6.0|^7.0",
|
||||
"illuminate/container": "^5.8|^6.0|^7.0",
|
||||
"illuminate/contracts": "^5.8|^6.0|^7.0",
|
||||
"illuminate/database": "^5.8|^6.0|^7.0"
|
||||
},
|
||||
"require-dev": {
|
||||
"orchestra/testbench": "^3.8|^4.0|^5.0",
|
||||
"phpunit/phpunit": "^8.0|^9.0",
|
||||
"predis/predis": "^1.1"
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Spatie\\Permission\\": "src"
|
||||
},
|
||||
"files": [
|
||||
"src/helpers.php"
|
||||
]
|
||||
},
|
||||
"autoload-dev": {
|
||||
"psr-4": {
|
||||
"Spatie\\Permission\\Test\\": "tests"
|
||||
}
|
||||
},
|
||||
"extra": {
|
||||
"laravel": {
|
||||
"providers": [
|
||||
"Spatie\\Permission\\PermissionServiceProvider"
|
||||
]
|
||||
}
|
||||
},
|
||||
"scripts": {
|
||||
"test": "phpunit"
|
||||
},
|
||||
"config": {
|
||||
"sort-packages": true
|
||||
},
|
||||
"minimum-stability": "dev",
|
||||
"prefer-stable": true
|
||||
}
|
||||
Reference in New Issue
Block a user