-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
32 lines (32 loc) · 919 Bytes
/
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
{
"name": "brand3000/nova-roles-and-permissions",
"description": "This package allows separating roles for admins and other types of users while stored in the same users table. Additionally, it provides functionality for managing permissions (reader/editor) for the admins of a project powered by Laravel Nova.",
"keywords": [
"laravel",
"nova",
"roles",
"permissions"
],
"license": "MIT",
"require": {},
"autoload": {
"psr-4": {
"Brand3000\\NovaRolesAndPermissions\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Brand3000\\NovaRolesAndPermissions\\Publisher"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"repositories": [
{
"type": "composer",
"url": "https://nova.laravel.com"
}
]
}