-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathcomposer.json
53 lines (53 loc) · 940 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "pktharindu/nova-permissions",
"description": "Laravel Nova Grouped Permissions (ACL)",
"keywords": [
"laravel",
"nova",
"tool",
"acl",
"roles",
"permissions",
"access control",
"gates",
"policies",
"authentication",
"authorization"
],
"license": "MIT",
"authors": [
{
"name": "P. K. Tharindu",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.1.0|^8.0"
},
"require-dev": {
"laravel/nova": "^4.0"
},
"repositories": [
{
"type": "composer",
"url": "https://nova.laravel.com"
}
],
"autoload": {
"psr-4": {
"Pktharindu\\NovaPermissions\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Pktharindu\\NovaPermissions\\ToolServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}