-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
42 lines (42 loc) · 1.46 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
{
"name": "saccilottoconsulting/craft-internal-assets",
"description": "A simple plugin to restrict access to assets for permitted users only. Access to a given asset is only granted if the user has view-permissions for the given source (this can be set in the user- or group-settings). The asset source folder should be moved out of the web root folder so the files are never accessible without this plugin.",
"type": "craft-plugin",
"version": "4.1.2",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"assets",
"access restriction"
],
"support": {
"docs": "https://github.com/tikiatua/internal-assets/blob/master/README.md",
"issues": "https://github.com/tikiatua/internal-assets/issues?state=open",
"source": "https://github.com/tikiatua/internal-assets"
},
"license": "MIT",
"authors": [
{
"name": "Ramon Saccilotto",
"homepage": "https://github.com/tikiatua"
}
],
"require": {
"craftcms/cms": "^4.0|^5.0",
"php": "^8.0"
},
"autoload": {
"psr-4": {
"saccilottoconsulting\\internalassets\\": "src/"
}
},
"extra": {
"name": "Internal Assets",
"handle": "internal-assets",
"hasCpSettings": false,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/tikiatua/internal-assets/master/CHANGELOG.md"
}
}