forked from thephpleague/flysystem-aws-s3-v3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 856 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
32
33
34
35
36
37
38
{
"name": "league/flysystem-aws-s3-v3",
"description": "Flysystem adapter for the AWS S3 SDK v3.x",
"license": "MIT",
"authors": [
{
"name": "Frank de Jonge",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.5.0",
"league/flysystem": "~1.0",
"aws/aws-sdk-php": "^3.0.0"
},
"require-dev": {
"phpspec/phpspec": "^2.0.0",
"henrikbjorn/phpspec-code-coverage" : "~1.0.1"
},
"autoload": {
"psr-4": {
"League\\Flysystem\\AwsS3v3\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"League\\Flysystem\\AwsS3v3\\Stub\\": "stub"
}
},
"config": {
"bin-dir": "bin"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}