flipe23 / yandex-object-storage-provider
Just add ServiceProvider for YandexObjectStorage
Installs: 4 499
Dependents: 0
Suggesters: 0
Security: 0
Stars: 16
Watchers: 2
Forks: 3
Open Issues: 2
Requires
This package is auto-updated.
Last update: 2025-04-11 18:56:03 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