-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
67 lines (67 loc) · 1.63 KB
/
Copy pathcomposer.json
File metadata and controls
67 lines (67 loc) · 1.63 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "wnikk/laravel-access-rules",
"version": "2.3.0",
"description": "Simple system of ACR (access control rules) for Laravel, with roles, groups, unlimited inheritance and possibility of multiplayer use.",
"license": "MIT",
"keywords": [
"wnikk",
"laravel",
"permission",
"permissions",
"roles",
"rules",
"acl",
"acr",
"rbac",
"manager",
"security"
],
"authors": [
{
"name": "Nikolay May",
"homepage": "https://nikk.dev",
"role": "Developer"
}
],
"homepage": "https://github.com/wnikk/laravel-access-rules",
"bugs": {
"url": "https://github.com/wnikk/laravel-access-rules/issues"
},
"require": {
"php": ">=7.4",
"illuminate/auth": "^8.0|*",
"illuminate/container": "^8.0|*",
"illuminate/contracts": "^8.0|*",
"illuminate/database": "^8.0|*",
"illuminate/cache": "^8.0|*",
"illuminate/console": "^8.0|*"
},
"require-dev": {
"orchestra/testbench": "*",
"phpunit/phpunit": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Wnikk\\LaravelAccessRules\\": "src"
},
"files": [
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Wnikk\\LaravelAccessRules\\AccessRulesServiceProvider"
]
}
}
}