65 lines
1.5 KiB
JSON
65 lines
1.5 KiB
JSON
{
|
|
"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
|
|
}
|