-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
executable file
·48 lines (48 loc) · 1.19 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
45
46
47
48
{
"name": "troisiemejoueur/cloudfront-signed-urls",
"description": "Create AWS Cloudfront Signed Urls for S3 Craft CMS storage",
"type": "craft-plugin",
"version": "1.1.0",
"keywords": [
"craft",
"cms",
"aws",
"signed url",
"private assets",
"assets",
"craftcms",
"craft-plugin"
],
"support": {
"docs": "https://www.3ejoueur.com",
"issues": "https://www.3ejoueur.com"
},
"license": "MIT",
"authors": [
{
"name": "3ejoueur",
"homepage": "https://www.3ejoueur.com"
}
],
"require": {
"craftcms/cms": "^3.0|^4.0",
"aws/aws-sdk-php": "^3.20.0"
},
"autoload": {
"psr-4": {
"troisiemejoueur\\cloudfrontsignedurls\\": "src/"
}
},
"extra": {
"name": "Cloudfront Signed Urls",
"handle": "cloudfront-signed-urls",
"developer": "3ejoueur",
"developerUrl": "https://www.3ejoueur.com",
"documentationUrl": "https://www.3ejoueur.com",
"changelogUrl": "https://www.3ejoueur.com",
"class": "troisiemejoueur\\cloudfrontsignedurls\\CloudfrontSignedUrls"
},
"require-dev": {
"craftcms/rector": "dev-main"
}
}