skydiver/laravel-flysystem-b2

Adds Backblaze B2 driver to use with Laravel filesystem
5,044 8
Install
composer require skydiver/laravel-flysystem-b2
Latest Version:1.0
PHP:>=5.4.0
License:MIT
Last Updated:Nov 5, 2016
Links: GitHub  ·  Packagist
Maintainer: skydiver

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

hpolthof/laravel-backblaze

Backblaze B2 Cloud Storage for Laravel 5

20,346 12
amelia/backblaze

Backblaze laravel storage adapter

870 5
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