-
Notifications
You must be signed in to change notification settings - Fork 13
/
composer.json
48 lines (48 loc) · 1.09 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
{
"name": "wgenial/s3-objects-stream-zip-php",
"homepage": "https://github.com/wgenial/s3-objects-stream-zip-php",
"description": "S3ObjectsStreamZip is a PHP library to stream objects from AWS S3 as a zip file.",
"keywords": [
"aws-s3",
"zip",
"compress",
"ziparchive",
"s3-bucket",
"s3-storage",
"amazon-s3-storage",
"amazon-s3",
"aws-php-sdk"
],
"type": "library",
"require": {
"php": ">=7.2",
"aws/aws-sdk-php": "^3.149",
"maennchen/zipstream-php": "^2.1",
"guzzlehttp/guzzle": "^6.5"
},
"require-dev": {
"phpunit/phpunit": "^8.5"
},
"autoload": {
"psr-4": {
"WGenial\\S3ObjectsStreamZip\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"WGenial\\S3ObjectsStreamZipTest\\": "tests/"
}
},
"license": "MIT",
"authors": [
{
"name": "Giovani Generali",
"email": "giovani.generali@gmail.com",
"homepage": "https://github.com/giovanigenerali",
"role": "Developer"
}
],
"scripts": {
"test": "./vendor/bin/phpunit --configuration ./phpunit.xml --colors=always"
}
}