| Package Data | |
|---|---|
| Maintainer Username: | skydiver |
| Maintainer Contact: | labs@flydev.com (Martin M.) |
| Package Create Date: | 2016-11-05 |
| Package Last Update: | 2016-11-05 |
| Language: | PHP |
| License: | MIT |
| Last Refreshed: | 2025-11-09 15:00:52 |
| Package Statistics | |
|---|---|
| Total Downloads: | 4,837 |
| Monthly Downloads: | 70 |
| Daily Downloads: | 0 |
| Total Stars: | 8 |
| Total Watchers: | 2 |
| Total Forks: | 1 |
| Total Open Issues: | 1 |
Adds Backblaze B2 driver to use with Laravel filesystem
composer require skydiver/laravel-flysystem-b2
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>'
],