forked from kennethormandy/craft-s3securedownloads
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.37 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": "kennethormandy/craft-s3securedownloads",
"description": "Return an AWS signed URL and proxy the download request.",
"version": "2.1.0",
"type": "craft-plugin",
"license": "MIT",
"keywords": [
"craft",
"aws"
],
"authors": [
{
"name": "Kenneth Ormandy",
"homepage": "https://kennethormandy.com"
},
{
"name": "Jonathan Melville",
"homepage": "codemdd.io"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/kennethormandy/craft-s3securedownloads/issues?state=open",
"source": "https://github.com/kennethormandy/craft-s3securedownloads",
"docs": "https://github.com/kennethormandy/craft-s3securedownloads/blob/master/README.md",
"rss": "https://github.com/kennethormandy/craft-s3securedownloads/releases.atom"
},
"require": {
"craftcms/cms": "^3.1.0"
},
"autoload": {
"psr-4": {
"kennethormandy\\s3securedownloads\\": "src/"
}
},
"extra": {
"handle": "s3securedownloads",
"name": "S3 Secure Downloads",
"developer": "Kenneth Ormandy Inc.",
"class": "kennethormandy\\s3securedownloads\\S3SecureDownloads",
"documentationUrl": "https://github.com/kennethormandy/craft-s3securedownloads/blob/master/README.md",
"changelogUrl": "https://raw.githubusercontent.com/kennethormandy/craft-s3securedownloads/master/CHANGELOG.md"
}
}