-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
44 lines (44 loc) · 1.25 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
{
"name": "thejoshsmith/craft-fab-permissions",
"description": "Give yourself better control over your sections with Craft Field and Tab (FAB) Permissions. Restrict which tabs and fields are visible to different user groups.",
"type": "craft-plugin",
"version": "2.0.2",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"field permissions",
"tab permissions"
],
"support": {
"docs": "https://github.com/thejoshsmith/craft-fab-permissions/blob/master/README.md",
"issues": "https://github.com/thejoshsmith/craft-fab-permissions/issues"
},
"license": "proprietary",
"authors": [
{
"name": "Josh Smith",
"homepage": "https://joshsmith.dev"
}
],
"require": {
"craftcms/cms": "^3.5.0"
},
"autoload": {
"psr-4": {
"thejoshsmith\\fabpermissions\\": "src/"
}
},
"extra": {
"name": "Field and Tab Permissions",
"handle": "craft-fab-permissions",
"hasCpSettings": false,
"hasCpSection": false,
"changelogUrl": "https://github.com/thejoshsmith/craft-fab-permissions/blob/master/CHANGELOG.md",
"components": {
"fabPermissionsService": "thejoshsmith\\fabpermissions\\services\\fab"
},
"class": "thejoshsmith\\fabpermissions\\FabPermissions"
}
}