-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 1.07 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
42
43
44
45
46
47
{
"name": "appslabke/ruhusa",
"description": "This is another user roles and permission management simple enough",
"type": "library",
"license": "MIT",
"keywords": [
"appslab",
"acl",
"ruhusa",
"laravel roles and permissions"
],
"homepage": "https://github.com/AppsLab-KE/ruhusa",
"authors": [
{
"name": "Marvin Collins",
"email": "[email protected]",
"role": "CEO",
"homepage": "https://appslab.co.ke"
}
],
"minimum-stability": "beta",
"require": {
"php": "^7.1",
"doctrine/dbal": "^2.8"
},
"require-dev": {
"orchestra/testbench": "^4.1",
"mockery/mockery": "^1.2"
},
"autoload": {
"psr-4": {
"AppsLab\\Acl\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"AppsLab\\Acl\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"AppsLab\\Acl\\RuhusaServiceProvider"
]
}
}
}