forked from silverstripe/silverstripe-s3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
31 lines (31 loc) · 787 Bytes
/
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
{
"name": "silverstripe/s3",
"type": "silverstripe-vendormodule",
"description": "Adds SilverStripe support for using the S3 adapter for Flysystem",
"license": "BSD-3-Clause",
"keywords": [
"silverstripe",
"filesystem",
"aws",
"s3"
],
"authors": [
{
"name": "Matt Peel",
"homepage": "https://github.com/madmatt/"
}
],
"require": {
"silverstripe/framework": "^4@dev",
"league/flysystem-aws-s3-v3": "^1.0",
"silverstripe/vendor-plugin": "^1.0",
"league/flysystem-cached-adapter": "^1.0"
},
"autoload": {
"psr-4": {
"SilverStripe\\S3\\": "src/"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}