lemesdaniel/s3forme

Laravel service provider s3for.me
154 4
Install
composer require lemesdaniel/s3forme
Latest Version:0.0.1
License:MIT
Last Updated:Sep 12, 2016
Links: GitHub  ·  Packagist
Maintainer: lemesdaniel

s3forme-laravel

Requirements

  • laravel >= 5.1
  • league/flysystem-aws-s3-v2 >=1.0 (retrieved automatically via Composer)

Installation

Using Composer:

composer require lemesdaniel/s3forme

Usage

In your config/flysystem.php file set the default driver to 's3forme' and add the connection configuration like so:

'default' => 's3forme',

'cloud' => 's3forme',

'disks' => [
    ...
    's3forme' => [
        'key' => 'you-key',
        'secret' => 'you-secret-key',
        'visibility' => 'public-read', // or private
        'bucket' => 'image', //name your bucket
        'endpoint'  => 'http://rest.s3for.me',
    ],
    ...
]

In your config/app.php file add the following provider to your service providers array:

'providers' => [
    ...
    Lemesdaniel\S3forme\Providers\S3formeFilesystemServiceProvider::class,
    ...
]

Related Packages

doctrine/dbal

Powerful PHP database abstraction layer (DBAL) with many features for database s...

631,580,251 9,707
laravel/framework

The Laravel Framework.

580,311,802 34,925
laravel/tinker

Powerful REPL for the Laravel framework.

489,754,436 7,444
laravel/serializable-closure

Laravel Serializable Closure provides an easy and secure way to serialize closur...

404,034,618 608
nunomaduro/collision

Cli error handling for console/command-line PHP applications.

384,821,166 4,658