laravel-roles/composer.json

53 lines
1.3 KiB
JSON
Raw Normal View History

2025-06-11 13:44:39 +00:00
{
"name": "blax-software/laravel-roles",
"type": "library",
"description": "Laravel roles and permission system",
"keywords": [
"roles",
"permission",
"laravel",
2025-06-15 09:56:28 +00:00
"blax",
"authorization",
"user management",
"access control",
"authentication"
2025-06-11 13:44:39 +00:00
],
"homepage": "http://www.blax.at",
"license": "MIT",
"authors": [
{
"name": "Fabian Wagner",
"email": "fabian@blax.at",
2025-06-15 09:56:28 +00:00
"homepage": "https://www.blax.at",
2025-06-11 13:44:39 +00:00
"role": "Developer"
}
],
"autoload": {
"psr-4": {
2025-06-16 05:12:26 +00:00
"Blax\\Roles\\": "src"
2025-06-11 13:44:39 +00:00
}
},
2025-06-16 05:12:26 +00:00
"config": {
"sort-packages": true
},
2025-06-11 13:44:39 +00:00
"require": {
2025-06-15 09:56:28 +00:00
"php": "^8.0",
"illuminate/auth": "^8.12|^9.0|^10.0|^11.0|^12.0",
"illuminate/container": "^8.12|^9.0|^10.0|^11.0|^12.0",
"illuminate/contracts": "^8.12|^9.0|^10.0|^11.0|^12.0",
"illuminate/database": "^8.12|^9.0|^10.0|^11.0|^12.0",
2025-06-16 05:12:26 +00:00
"illuminate/support": "^8.12|^9.0|^10.0|^11.0|^12.0"
},
"require-dev": {
2025-06-15 09:56:28 +00:00
"laravel/pint": "^1.22"
2025-06-16 05:39:39 +00:00
},
"extra": {
"laravel": {
"providers": [
2025-06-16 05:40:14 +00:00
"Blax\\Roles\\PermissionsServiceProvider"
2025-06-16 05:39:39 +00:00
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
2025-06-11 13:44:39 +00:00
}