luyadev/luya-aws

LUYA Amazon Webservice LUYA components.


Keywords
hacktoberfest, luya, yii2
License
MIT

Documentation

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',
    ]
]