https://github.com/skydiver/laravel-flysystem-b2
https://github.com/skydiver/laravel-flysystem-b2
Last synced: 7 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/skydiver/laravel-flysystem-b2
- Owner: skydiver
- License: mit
- Created: 2016-11-05T03:38:28.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-11-05T04:16:01.000Z (over 9 years ago)
- Last Synced: 2025-10-24T19:34:19.937Z (8 months ago)
- Language: PHP
- Size: 5.86 KB
- Stars: 8
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# flysystem-b2
### Introduction
Adds Backblaze B2 driver to use with Laravel filesystem
### Installation
``` bash
composer require skydiver/laravel-flysystem-b2
```
### Configuration
After installing, register the `Skydiver\LaravelFlysystemB2\B2ServiceProvider` in your `config/app.php` configuration file:
```php
'providers' => [
// Other service providers...
Skydiver\LaravelFlysystemB2\B2ServiceProvider::class,
],
```
You will also need to add the new driver in your `config/filesystems.php` configuration file:
```php
'b2' => [
'driver' => 'b2',
'bucket' => '',
'accountId' => '',
'applicationKey' => ''
],
```