-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
31 lines (31 loc) · 868 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
{
"name": "lcharette/uf_altpermissions",
"type": "userfrosting-sprinkle",
"description": "Alternate/complementary permission system for UserFrosting V4",
"keywords": ["permissions", "roles", "userfrosting"],
"homepage": "https://github.com/lcharette/UF-AltPermissions",
"license" : "MIT",
"authors" : [
{
"name": "Louis Charette",
"homepage": "https://github.com/lcharette"
}
],
"require": {
"php": ">=5.6",
"lcharette/uf_formgenerator": "^3.0.0 | ^4.0.0"
},
"autoload": {
"psr-4": {
"UserFrosting\\Sprinkle\\AltPermissions\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"UserFrosting\\Sprinkle\\AltPermissions\\Tests\\": "tests/"
}
},
"extra": {
"installer-name": "AltPermissions"
}
}