amelia/backblaze

Backblaze laravel storage adapter

Maintainers

👁 amelia

Package info

github.com/ameliaikeda/backblaze

pkg:composer/amelia/backblaze

Statistics

Installs: 865

Dependents: 4

Suggesters: 0

Stars: 5

Open Issues: 1

v1.2.0 2018-02-09 06:52 UTC

Requires

Requires (Dev)

None

Suggests

None

Provides

None

Conflicts

None

Replaces

None

BSD-3-Clause 72dd26a55549e3bfd7a551e019b9eefad7e50f5e

  • Amelia Ikeda <amelia.woop@dorks.io>

storagelaravelFlysystemb2backblaze

This package is auto-updated.

Last update: 2026-06-08 19:31:51 UTC


README

Setup:

composer require amelia/backblaze

Register Amelia\Backblaze\BackblazeServiceProvider::class, then add a config array in filesystems.php.

'b2' => [
 'driver' => 'b2',
 'key' => env('BACKBLAZE_KEY'),
 'host' => env('BACKBLAZE_HOST'),
 'bucket' => env('BACKBLAZE_BUCKET'),
 'account' => env('BACKBLAZE_ACCOUNT'),
],

host can be set if you want to link directly to files in buckets marked allPublic.

See this handy guide for setting up cloudflare page rules to turn your bucket into a CDN.

Features

  • Caches the auth token, meaning you don't constantly hit the auth endpoint.
  • Refreshes the auth token for long-running processes (like queue:work).