forked from jmathai/s3-bucket-stream-zip-php
-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
36 lines (36 loc) · 961 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
{
"name": "michaeltlee/s3-bucket-stream-zip-php",
"homepage": "https://github.com/michaeltlee/s3-bucket-stream-zip-php",
"description": "PHP library to efficiently stream contents from an AWS S3 bucket or folder as a zip file",
"keywords": ["amazon","aws","s3","stream","zip","php","download"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Jaisen Mathai",
"email": "jaisen@jmathai.com",
"homepage": "http://jaisenmathai.com/"
},
{
"name": "Linus Metzler",
"email": "hi@linusmetzler.me",
"homepage": "https://linusmetzler.me/"
}
],
"support": {
"issues": "https://github.com/limenet/s3-bucket-stream-zip-php/issues"
},
"require": {
"php": ">=7.0",
"maennchen/zipstream-php": "^0.4",
"aws/aws-sdk-php": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "~5.0"
},
"autoload": {
"psr-4": {
"limenet\\S3BucketStreamZip\\": "src/"
}
}
}