forked from fortrabbit/craft-object-storage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
54 lines (54 loc) · 1.32 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
{
"name": "fortrabbit/craft-object-storage",
"description": "A Craft 4 plugin that integrates with fortrabbit's S3 compatible Object Storage",
"type": "craft-plugin",
"keywords": [
"craftcms",
"flysystem",
"fortabbit",
"object-storage",
"plugin",
"s3"
],
"license": "MIT",
"authors": [
{
"name": "Oliver Stark",
"homepage": "https://www.fortrabbit.com/"
}
],
"require": {
"php": "^8.0",
"craftcms/cms": "^4.0.0",
"craftcms/flysystem": "^1.0.0",
"league/flysystem-aws-s3-v3": "^3.0.0",
"symfony/console": "^5.1"
},
"require-dev": {
"craftcms/phpstan": "dev-main",
"craftcms/rector": "dev-main"
},
"autoload": {
"psr-4": {
"fortrabbit\\ObjectStorage\\": "src/"
}
},
"extra": {
"name": "fortrabbit Object Storage Volume",
"handle": "fortrabbit-object-storage",
"changelogUrl": "https://raw.githubusercontent.com/fortrabbit/craft-object-storage/master/CHANGELOG.md",
"downloadUrl": "https://github.com/fortrabbit/craft-object-storage/archive/master.zip"
},
"bin": [
"bin/object-storage-init"
],
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true,
"pestphp/pest-plugin": true
}
}
}