-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
69 lines (69 loc) · 2.08 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "kennethormandy/craft-s3securedownloads",
"description": "Return an AWS signed URL and proxy the download request.",
"version": "5.0.0",
"type": "craft-plugin",
"license": "MIT",
"keywords": [
"craft",
"aws"
],
"authors": [
{
"name": "Kenneth Ormandy",
"homepage": "https://kennethormandy.com"
},
{
"name": "Jonathan Melville",
"homepage": "https://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": "^5.0.0",
"craftcms/aws-s3": "^2.1.0",
"aws/aws-sdk-php": "^3.295.10"
},
"autoload": {
"psr-4": {
"kennethormandy\\s3securedownloads\\": "src/"
}
},
"extra": {
"handle": "s3securedownloads",
"name": "S3 Secure Downloads",
"developer": "Kenneth Ormandy Inc.",
"class": "kennethormandy\\s3securedownloads\\S3SecureDownloads",
"changelogUrl": "https://raw.githubusercontent.com/kennethormandy/craft-s3securedownloads/master/CHANGELOG.md",
"documentationUrl": "https://github.com/kennethormandy/craft-s3securedownloads/blob/master/README.md"
},
"require-dev": {
"codeception/codeception": "^5.0.11",
"codeception/module-asserts": "^3.0.0",
"vlucas/phpdotenv": "^5.4.1",
"codeception/module-yii2": "^1.1.9",
"craftcms/ecs": "dev-main",
"craftcms/phpstan": "dev-main",
"craftcms/rector": "dev-main"
},
"scripts": {
"test": "vendor/bin/codecept run",
"check-cs": "ecs check --ansi",
"fix-cs": "ecs check --ansi --fix",
"phpstan": "phpstan --memory-limit=1G"
},
"config": {
"allow-plugins": {
"craftcms/plugin-installer": true,
"yiisoft/yii2-composer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}