-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
42 lines (42 loc) · 1007 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
39
40
41
42
{
"name": "matecat/simple-s3",
"type": "library",
"description": "Simple S3 Client",
"keywords": ["AWS", "SDK", "S3", "php"],
"homepage": "https://github.com/matecat/simple-s3",
"license": "MIT",
"support": {
"issues": "https://github.com/matecat/simple-s3/issues"
},
"authors": [
{
"name": "Mauro Cassani",
"email": "[email protected]",
"homepage": "https://github.com/mauretto78"
}
],
"autoload": {
"psr-4": {
"Matecat\\SimpleS3\\": "src/"
}
},
"autoload-dev": {
"psr-4": { "Matecat\\SimpleS3\\Tests\\": "tests/" }
},
"require": {
"php": ">=5.6",
"predis/predis": "^2.0",
"aws/aws-sdk-php": "^3.322",
"ext-curl": "^7.3",
"ext-fileinfo": "^7.3",
"ext-redis": "*",
"ext-json": "*"
},
"require-dev": {
"symfony/console": "^3.4.17 || ^4.1.6",
"friendsofphp/php-cs-fixer": "^2.3",
"monolog/monolog": "^1.24",
"phpunit/phpunit": "~5.7",
"phpstan/phpstan": "^0.11.8"
}
}