jovanialferez / yii2-s3

An Amazon S3Client wrapper as yii2 component.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

yii2-s3

An Amazon S3Client wrapper as Yii2 component.

Usage

return [
	// ...
	'components' => [
		'storage' => [
			'class' => '\jovanialferez\yii2s3\AmazonS3',
			'key' => 'AWS_ACCESS_KEY_ID',
			'secret' => 'AWS_SECRET_ACCESS_KEY',
			'bucket' => 'YOUR_BUCKET',
		],
		// ...
	],
];

You can then start using this component as:

$storage = \Yii::$app->storage;

// uploadFile() here returns the resulting S3 url of that file
$url = $storage->uploadFile('/path/to/file', 'unique_file_name');

About

An Amazon S3Client wrapper as yii2 component.


Languages

Language:PHP 100.0%