mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-28 12:11:08 -04:00
40 lines
757 B
PHP
40 lines
757 B
PHP
<?php
|
|
|
|
namespace Crater\Providers;
|
|
|
|
use Illuminate\Support\ServiceProvider;
|
|
use Illuminate\Support\Facades\Storage;
|
|
use League\Flysystem\Filesystem;
|
|
use Spatie\Dropbox\Client as DropboxClient;
|
|
use Spatie\FlysystemDropbox\DropboxAdapter;
|
|
|
|
class DropboxServiceProvider extends ServiceProvider
|
|
{
|
|
/**
|
|
* Register services.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function register()
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Bootstrap services.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function boot()
|
|
{
|
|
Storage::extend('dropbox', function ($app, $config) {
|
|
$client = new DropboxClient(
|
|
$config['token']
|
|
);
|
|
|
|
return new Filesystem(new DropboxAdapter($client));
|
|
});
|
|
|
|
}
|
|
}
|