forked from noxify/asset-ownership
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·44 lines (44 loc) · 1.22 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": "noxify/asset-ownership",
"description": "This plugin extends the existing asset query and shows only the assets which has been uploaded by the current user.",
"type": "craft-plugin",
"version": "1.0.3",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"asset ownership",
"asset",
"assets",
"permission",
"i.love.nox"
],
"support": {
"docs": "https://github.com/noxify/asset-ownership/blob/master/README.md",
"issues": "https://github.com/noxify/asset-ownership/issues"
},
"license": "MIT",
"authors": [
{
"name": "Marcus Reinhardt",
"homepage": "https://github.com/noxify"
}
],
"require": {
"craftcms/cms": "^3.0.0-RC1"
},
"autoload": {
"psr-4": {
"noxify\\assetownership\\": "src/"
}
},
"extra": {
"name": "Asset Ownership",
"handle": "asset-ownership",
"hasCpSettings": true,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/noxify/asset-ownership/master/CHANGELOG.md",
"class": "noxify\\assetownership\\AssetOwnership"
}
}