luyadev / luya-aws
LUYA Amazon Webservice LUYA components.
1.7.0
2024-07-03 09:18 UTC
Requires
- aws/aws-sdk-php: ^3.0
- friendsofphp/php-cs-fixer: ^3.15
- phpstan/phpstan: ^1.10
Requires (Dev)
- luyadev/luya-module-admin: ^1.0|^2.0|^3.0|^4.0|^5.0
- luyadev/luya-testsuite: ^2.0
Suggests
None
Provides
None
Conflicts
None
Replaces
None
README
LUYA Amazon S3 filesystem
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', ] ]
