-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (53 loc) · 1.47 KB
/
composer.json
File metadata and controls
53 lines (53 loc) · 1.47 KB
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
45
46
47
48
49
50
51
52
53
{
"name": "convergine/craft-sharebox",
"description": "ShareBox allows to share files hosted on Azure Blob Storage or Amazon S3 with your site visitors.",
"version": "1.0.1",
"type": "craft-plugin",
"license": "proprietary",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"convergine",
"craft file manager",
"azure blob storage",
"amazon s3",
"file hosting",
"public file sharing",
"file library",
"cloud storage",
"files sharing"
],
"support": {
"issues": "https://github.com/convergine/craft-sharebox/issues?state=open",
"source": "https://github.com/convergine/craft-sharebox",
"docs": "https://github.com/convergine/craft-sharebox/blob/master/README.md"
},
"authors": [
{
"name": "Convergine Corp.",
"homepage": "https://www.convergine.com"
}
],
"require": {
"craftcms/cms": "^4.0.0 || ^5.0.0",
"microsoft/azure-storage-blob": "^1.5.3",
"aws/aws-sdk-php": "^3.234.2"
},
"autoload": {
"psr-4": {
"convergine\\sharebox\\": "src/"
}
},
"extra": {
"name": "ShareBox",
"handle": "convergine-sharebox",
"hasCpSettings": true,
"hasCpSection": true,
"developerUrl": "https://www.convergine.com",
"documentationUrl": "https://github.com/convergine/craft-sharebox/blob/master/README.md",
"changelogUrl": "https://github.com/convergine/craft-sharebox/blob/master/CHANGELOG.md",
"class": "convergine\\sharebox\\ShareBox"
}
}