-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
39 lines (39 loc) · 891 Bytes
/
Copy pathcomposer.json
File metadata and controls
39 lines (39 loc) · 891 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
31
32
33
34
35
36
37
38
39
{
"name": "mirhamit/acl",
"description": "Access Level Control For Laravel",
"keywords": [
"laravel",
"MirHamit",
"Access Control List",
"acl"
],
"homepage": "https://github.com/MirHamit/acl",
"license": "MIT",
"authors": [
{
"name": "Hamid Musavi",
"email": "w1w@yahoo.com",
"homepage": "https://kratos.ir",
"role": "Developer"
}
],
"require": {
"php" : "^7.2.5|>=8.0",
"illuminate/auth": ">=6.0",
"illuminate/database": ">=6.0"
},
"autoload": {
"psr-4": {
"MirHamit\\ACL\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"MirHamit\\ACL\\ACLServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}