Visit (https://secure.backblaze.com/b2_buckets.htm) and get your account id, application key.
The Backblaze adapter gives the possibility to use the Flysystem filesystem abstraction library with backblaze. It uses the Backblaze B2 SDK to communicate with the API.
Via Composer
$ composer require mhetreramesh/flysystem-backblaze
use Mhetreramesh\Flysystem\BackblazeAdapter;
use League\Flysystem\Filesystem;
use ChrisWhite\B2\Client;
$client = new Client($accountId, $applicationKey);
$adapter = new BackblazeAdapter($client);
$filesystem = new Filesystem($adapter);
Please see CHANGELOG for more information what has changed recently.
$ composer test
Please see CONTRIBUTING and CONDUCT for details.
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.