skydiver / laravel-flysystem-b2
Adds Backblaze B2 driver to use with Laravel filesystem
Installs: 4 558
Dependents: 0
Suggesters: 0
Security: 0
Stars: 8
Watchers: 4
Forks: 1
Open Issues: 1
Requires
- php: >=5.4.0
- illuminate/support: >=5.1
- mhetreramesh/flysystem-backblaze: ^1.0
This package is auto-updated.
Last update: 2024-11-17 13:17:28 UTC
README
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>' ],