skydiver/laravel-flysystem-b2
flysystem-b2
Introduction
Adds Backblaze B2 driver to use with Laravel filesystem
Installation
composer require skydiver/laravel-flysystem-b2
Configuration
After installing, register the Skydiver\LaravelFlysystemB2\B2ServiceProvider in your config/app.php configuration file:
'providers' => [
// Other service providers...
Skydiver\LaravelFlysystemB2\B2ServiceProvider::class,
],
You will also need to add the new driver in your config/filesystems.php configuration file:
'b2' => [
'driver' => 'b2',
'bucket' => '<my bucket name>',
'accountId' => '<b2 account id>',
'applicationKey' => '<b2 application key>'
],
Related Packages
saeedvir/laravel-gist-storage
Laravel Storage driver for GitHub Gist - Store files on GitHub Gist using Larave...
6
0
jungehaie/laravel-filesystem-google-cloud-storage
A Laravel Flysystem implementation for the Google Cloud Storage via a S3Client.
1,866
2