Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.44 KB

README.md

File metadata and controls

39 lines (30 loc) · 1.44 KB

LUYA Logo

LUYA Amazon S3 filesystem

LUYA Tests Test Coverage Latest Stable Version Total Downloads Slack Support

A file system for the LUYA admin interface in order to store and retrieve all storage data from an Amazon S3 Bucket.

Installation

For the installation of the filesystem composer is required.

composer require luyadev/luya-aws

Configuration

After installation via Composer include the storage component to your configuration in the components sesction with your credentials:

'components' => [
    //...
    'storage' => [
        'class' => 'luya\aws\S3FileSystem',
        'bucket' => 'BUCKET_NAME',
        'key' => 'KEY',
        'secret' => 'SECRET',
        'region' => 'eu-central-1',
    ]
]