-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
41 lines (41 loc) · 1.03 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "itstructure/laravel-rbac",
"description": "Laravel package for RBAC manage",
"type": "library",
"keywords": ["laravel", "rbac", "role", "permission", "profile"],
"license": "MIT",
"authors": [
{
"name": "Andrey Girnik",
"email": "[email protected]",
"homepage": "https://github.com/itstructure",
"role": "Developer"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"laravel/framework": "^8.0|^9.0|^10.0|^11.0",
"php": ">=7.3.0",
"itstructure/laravel-grid-view": "^1.1.4"
},
"classmap": [
"database/migrations",
"database/seeders",
"src/Models",
"src/Http/Requests",
"src/Http/Controllers"
],
"autoload": {
"psr-4": {
"Itstructure\\LaRbac\\": "src"
}
},
"extra": {
"laravel": {
"providers": [
"Itstructure\\LaRbac\\RbacServiceProvider"
]
}
}
}