arleslie/dreamobjects-client

Client for DreamObjects to work with AWS s3 API

1.0.1 2016-01-09 22:14 UTC

This package is not auto-updated.

Last update: 2024-04-13 16:18:13 UTC


README

Client for DreamObjects to work with AWS S3 API (for Laravel)

Installation

composer require arleslie/dreamobjects-client

In config\filesystems.php add the following under 'disks' => [

        'dreamobjects' => [
            'driver' => 'dreamobjects',
            'key'    => '<key>',
            'secret' => '<secret>',
            'bucket' => '<bucket name>'
        ],

Add the ServiceProvider: arleslie\DreamObjects\ServiceProvider to your app.php.