2017 © Pedro Peláez
 

library flysystem-plugin-aws-s3-v3

AWS S3 plugin for Flysystem.

image

sistemi-etime/flysystem-plugin-aws-s3-v3

AWS S3 plugin for Flysystem.

  • Tuesday, April 3, 2018
  • by sistemi-etime
  • Repository
  • 1 Watchers
  • 1 Stars
  • 444 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 2 Versions
  • 363 % Grown

The README.md

Flysystem AWS S3 Plugin

Author Author, (*1)

Build Status Software License Packagist Version Total Downloads, (*2)

Requirements

Installation

Using composer:, (*3)

composer require sistemi-etime/flysystem-plugin-aws-s3-v3

Or add it manually:, (*4)

{
    "require": {
        "sistemi-etime/flysystem-plugin-aws-s3-v3": "1.*"
    }
}

Usage

This plugin requires a Filesystem instance using the [AwsS3Adapter adapter])., (*5)

use Etime\Flysystem\Plugin\AWS_S3 as AWS_S3_Plugin;
use League\Flysystem\AwsS3v3\AwsS3Adapter;
use League\Flysystem\Filesystem;
use Aws\S3\S3Client;

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

$adapter = new AwsS3Adapter($client, 'your-bucket-name');
$filesystem = new Filesystem($adapter);

$filesystem->addPlugin(new AWS_S3_Plugin\PresignedUrl());

$success = $filesystem->getPresignedUrl('/tmp/some/target');

The Versions

03/04 2018

dev-master

9999999-dev

AWS S3 plugin for Flysystem.

  Sources   Download

MIT

The Requires

 

plugin s3 aws flysystem geturl

03/04 2018

1.0.0

1.0.0.0

AWS S3 plugin for Flysystem.

  Sources   Download

MIT

The Requires

 

plugin s3 aws flysystem geturl