-
Notifications
You must be signed in to change notification settings - Fork 23
/
composer.json
42 lines (41 loc) · 943 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
{
"name": "nahid/permit",
"description": "Permit is a laravel ACL and authorization package",
"keywords": ["acl", "permit", "authorization"],
"type": "library",
"require": {
"php": ">=5.5.9",
"nahid/jsonq": "^5.2"
},
"require-dev": {
"phpunit/phpunit": "^6.1"
},
"autoload": {
"classmap": [
],
"psr-4": {
"Nahid\\Permit\\": "src/"
},
"files": [
"helpers/permit.php"
]
},
"license": "CC-BY-3.0",
"authors": [
{
"name": "Nahid Bin Azhar",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"extra": {
"laravel": {
"providers": [
"Nahid\\Permit\\PermitServiceProvider"
],
"aliases": {
"Permit": "Nahid\\Permit\\Facades\\Permit"
}
}
}
}