artsur / yandex-object-storage-provider
Just add ServiceProvider for YandexObjectStorage
v1.2
2020-12-08 20:39 UTC
Requires
This package is auto-updated.
Last update: 2025-03-09 05:30:57 UTC
README
Just add service provider for yandex cloud
Install
Via composer:
composer require artsur/yandex-object-storage-provider
Usage
After installing this package add the following code to your config/filesystems.php:
'yandex' => [
'driver' => 'yandexcloud',
'key' => 'your-key',
'secret' => 'your-secret',
'bucket' => 'bucket-name',
'region' => 'us-east-1',
],
And then you can use
$disk = Storage::disk('yandex');
to get your yandex cloud storage instance