luyadev/luya-aws

LUYA Amazon Webservice LUYA components.

Installs: 8 049

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 5

Forks: 1

Open Issues: 0

Type:luya-extension

1.6.0 2023-04-12 12:34 UTC

This package is auto-updated.

Last update: 2024-03-12 14:25:00 UTC


README

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