-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
executable file
·64 lines (64 loc) · 1.5 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
{
"name": "dyerc/craft-flux",
"description": "Transform and cache your images through AWS Lambda & CloudFront",
"type": "craft-plugin",
"version": "5.0.3",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"flux",
"aws",
"lambda",
"cloudfront"
],
"support": {
"docs": "https://cdyer.co.uk/plugins/flux",
"issues": "https://github.com/dyerc/craft-flux/issues"
},
"license": "proprietary",
"authors": [
{
"name": "Chris Dyer",
"homepage": "https://cdyer.co.uk"
}
],
"require": {
"php": "^8.2",
"craftcms/cms": "^5.0.0",
"aws/aws-sdk-php": "^3.240",
"ext-zip": "*"
},
"autoload": {
"psr-4": {
"dyerc\\flux\\": "src/"
}
},
"extra": {
"name": "Flux",
"handle": "flux",
"developer": "Chris Dyer",
"developerUrl": "https://cdyer.co.uk",
"documentationUrl": "https://cdyer.co.uk/plugins/flux",
"changelogUrl": "https://raw.githubusercontent.com/dyerc/craft-flux/master/CHANGELOG.md",
"class": "dyerc\\flux\\Flux"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"craftcms/phpstan": "dev-main",
"phpstan/phpstan": "^1.10.56",
"codeception/codeception": "^5.0.11",
"codeception/module-asserts": "^3.0.0",
"codeception/module-yii2": "^1.1.10",
"vlucas/phpdotenv": "^5.5",
"craftcms/aws-s3": "2.2.1"
}
}