PHP Classes

File: libraries/vendor/league/flysystem/docs/adapter/aws-s3-v3.md

Recommend this page to a friend!
  Classes of Duong Huynh Nghia   PHP Slim Framework 3 Modular Application   libraries/vendor/league/flysystem/docs/adapter/aws-s3-v3.md   Download  
File: libraries/vendor/league/flysystem/docs/adapter/aws-s3-v3.md
Role: Auxiliary data
Content type: text/markdown
Description: Auxiliary data
Class: PHP Slim Framework 3 Modular Application
Create modular applications using Slim Framework
Author: By
Last change:
Date: 6 years ago
Size: 583 bytes
 

Contents

Class file image Download

layout: default permalink: /adapter/aws-s3-v3/ title: Aws S3 Adapter V3

Aws S3 Adapter - SDK V3

Installation

composer require league/flysystem-aws-s3-v3

Usage

use Aws\S3\S3Client;
use League\Flysystem\AwsS3v3\AwsS3Adapter;
use League\Flysystem\Filesystem;

$client = S3Client::factory([
    'credentials' => [
        'key'    => 'your-key',
        'secret' => 'your-secret',
    ],
    'region' => 'your-region',
    'version' => 'latest|version',
]);

$adapter = new AwsS3Adapter($client, 'your-bucket-name', 'optional/path/prefix');