Skip to content

Commit

Permalink
Merge pull request #4 from matecat/upgrade-s3-sdk
Browse files Browse the repository at this point in the history
Upgrade to the latest S3 SDK
  • Loading branch information
mauretto78 authored Sep 25, 2024
2 parents 77859cc + acbb00b commit e0031c7
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
5 changes: 3 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
.idea
.php_cs.cache
build
config/credentials.*.ini
config/credentials.ini
log
vendor
vendor
composer.lock
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"require": {
"php": ">=5.6",
"predis/predis": "^2.0",
"aws/aws-sdk-php": "^3.93",
"aws/aws-sdk-php": "^3.322",
"ext-curl": "^7.3",
"ext-fileinfo": "^7.3",
"ext-redis": "*",
Expand Down
3 changes: 3 additions & 0 deletions src/ClientFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,9 @@ private static function createConfigArray(array $config)
);
}

// Temp fix: suppressing PHP < 8.1 warnings
$config['suppress_php_deprecation_warning'] = true;

return $config;
}

Expand Down

0 comments on commit e0031c7

Please sign in to comment.