davidhirtz / yii2-media-s3
There is no license information available for the latest version (v2.0.1) of this package.
Amazon S3 extension for media management module based on Yii 2.0 framework
Package info
github.com/davidhirtz/yii2-media-s3
Type:yii2-extension
pkg:composer/davidhirtz/yii2-media-s3
v2.0.1
2023-11-06 18:00 UTC
Requires
- aws/aws-sdk-php: ^3.154
- davidhirtz/yii2-media: ^2.0.2
README
This extension enables the use of Amazon S3 as file system for the Yii 2 extension yii2-media.
Add the following to your application configuration. Both awsAccessKey and awsAccessSecret can also be set in config/params.php or omitted in which case the default AWS configuration will be loaded.
<?php return [ 'modules' => [ 'media-s3' => [ 'bucket' => 'your-bucket', 'region' => 'your-region', 'awsAccessKey' => 'your-key', 'awsAccessSecret' => 'your-secret', ], ], ];