Skip to content

luyadev/luya-aws

Folders and files

NameName
Last commit message
Last commit date
Jun 26, 2024
Jun 26, 2024
Jul 27, 2021
Apr 12, 2023
Apr 12, 2023
Jul 3, 2024
Oct 2, 2021
Oct 7, 2021
Jun 18, 2020
Jun 26, 2024
Apr 12, 2023

Repository files navigation

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