-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 826 Bytes
/
composer.json
File metadata and controls
30 lines (30 loc) · 826 Bytes
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
{
"name": "mimaxuz/role-manager",
"description": "Simple Laravel roles and permissions for Laravel applications",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Oktam Yaqubov",
"email": "oktam@yaqubov.info"
}
],
"autoload": {
"psr-4": {
"MIMAXUZ\\LRoles\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"MIMAXUZ\\LRoles\\Providers\\PermissionsServiceProvider"
]
}
},
"homepage": "https://github.com/MIMAXUZ/role-manager",
"require": {
"php": "^7.2|^8.0.2|^8.1|^8.2|^8.3|^8.4",
"illuminate/auth": "^v7.0|^v8.0|^v9.0|^10.0|^11.0|^12.0",
"illuminate/database": "^v8.0.0|^v9.0.0|^9.22.1|^10.0|^11.0|^12.0"
}
}