2017 © Pedro Peláez
 

library dropbox

Dropbox Is A Dropbox Bridge For Laravel 5

image

graham-campbell/dropbox

Dropbox Is A Dropbox Bridge For Laravel 5

  • Sunday, July 16, 2017
  • by graham-campbell
  • Repository
  • 12 Watchers
  • 119 Stars
  • 31,505 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 16 Forks
  • 0 Open issues
  • 17 Versions
  • 5 % Grown

The README.md

Laravel Dropbox

Laravel Dropbox was created by, and is maintained by Graham Campbell, and is a Dropbox bridge for Laravel 5. It utilises my Laravel Manager package. Feel free to check out the change log, releases, license, and contribution guidelines., (*1)

Laravel Dropbox, (*2)

StyleCI Status Build Status Coverage Status Quality Score Software License Latest Version , (*3)

Installation

Laravel Dropbox requires PHP 5.5+. This particular version supports Laravel 5.1, 5.2, 5.3, or 5.4 only., (*4)

To get the latest version, simply require the project using Composer:, (*5)

$ composer require graham-campbell/dropbox

Once installed, you need to register the GrahamCampbell\Dropbox\DropboxServiceProvider service provider in your config/app.php, and optionally alias our facade:, (*6)

        'Dropbox' => GrahamCampbell\Dropbox\Facades\Dropbox::class,

Configuration

Laravel Dropbox requires connection configuration., (*7)

To get started, you'll need to publish all vendor assets:, (*8)

$ php artisan vendor:publish

This will create a config/dropbox.php file in your app that you can modify to set your configuration. Also, make sure you check for changes to the original config file in this package between releases., (*9)

There are two config options:, (*10)

Default Connection Name

This option ('default') is where you may specify which of the connections below you wish to use as your default connection for all work. Of course, you may use many connections at once using the manager class. The default value for this setting is 'main'., (*11)

Dropbox Connections

This option ('connections') is where each of the connections are setup for your application. Example configuration has been included, but you may add as many connections as you would like., (*12)

Usage

DropboxManager

This is the class of most interest. It is bound to the ioc container as 'dropbox' and can be accessed using the Facades\Dropbox facade. This class implements the ManagerInterface by extending AbstractManager. The interface and abstract class are both part of my Laravel Manager package, so you may want to go and checkout the docs for how to use the manager class over at that repo. Note that the connection class returned will always be an instance of \Dropbox\Client., (*13)

Facades\Dropbox

This facade will dynamically pass static method calls to the 'dropbox' object in the ioc container which by default is the DropboxManager class., (*14)

DropboxServiceProvider

This class contains no public methods of interest. This class should be added to the providers array in config/app.php. This class will setup ioc bindings., (*15)

Real Examples

Here you can see an example of just how simple this package is to use. Out of the box, the default adapter is main. After you enter your authentication details in the config file, it will just work:, (*16)

use GrahamCampbell\Dropbox\Facades\Dropbox;
// you can alias this in config/app.php if you like

Dropbox::createFolder('foo');
// we're done here - how easy was that, it just works!

Dropbox::delete('foo');
// this example is simple, and there are far more methods available

The dropbox manager will behave like it is a \Dropbox\Client class. If you want to call specific connections, you can do with the connection method:, (*17)

use GrahamCampbell\Dropbox\Facades\Dropbox;

// the alternative connection is the other example provided in the default config
// let's create a copy ref so we can copy a file to the main connection
$ref = Dropbox::connection('alternative')->createCopyRef('foo');

// let's copy the file over to the other connection
// note that using the connection method here is optional
Dropbox::connection('main')->copyFromCopyRef($ref, 'bar');

With that in mind, note that:, (*18)

use GrahamCampbell\Dropbox\Facades\Dropbox;

// writing this:
Dropbox::connection('main')->createFolder('foo');

// is identical to writing this:
Dropbox::createFolder('foo');

// and is also identical to writing this:
Dropbox::connection()->createFolder('foo');

// this is because the main connection is configured to be the default
Dropbox::getDefaultConnection(); // this will return main

// we can change the default connection
Dropbox::setDefaultConnection('alternative'); // the default is now alternative

If you prefer to use dependency injection over facades like me, then you can easily inject the manager like so:, (*19)

use GrahamCampbell\Dropbox\DropboxManager;
use Illuminate\Support\Facades\App; // you probably have this aliased already

class Foo
{
    protected $dropbox;

    public function __construct(DropboxManager $dropbox)
    {
        $this->dropbox = $dropbox;
    }

    public function bar()
    {
        $this->dropbox->createFolder('foo');
    }
}

App::make('Foo')->bar();

For more information on how to use the \Dropbox\Client class we are calling behind the scenes here, check out the docs at http://dropbox.github.io/dropbox-sdk-php/api-docs/v1.1.x/source-class-Dropbox.Client.html, and the manager class at https://github.com/GrahamCampbell/Laravel-Manager#usage., (*20)

Further Information

There are other classes in this package that are not documented here. This is because they are not intended for public use and are used internally by this package., (*21)

Security

If you discover a security vulnerability within this package, please send an e-mail to Graham Campbell at graham@alt-three.com. All security vulnerabilities will be promptly addressed., (*22)

License

Laravel Dropbox is licensed under The MIT License (MIT)., (*23)

The Versions

16/07 2017

dev-master

9999999-dev

Dropbox Is A Dropbox Bridge For Laravel 5

  Sources   Download

MIT

The Requires

 

The Development Requires

by Graham Campbell

laravel api framework files graham campbell grahamcampbell dropbox bridge laravel dropbox laravel-dropbox dropbox bridge

01/01 2017

v3.4.0

3.4.0.0

Dropbox Is A Dropbox Bridge For Laravel 5

  Sources   Download

MIT

The Requires

 

The Development Requires

by Graham Campbell

laravel api framework files graham campbell grahamcampbell dropbox bridge laravel dropbox laravel-dropbox dropbox bridge

26/04 2016

v3.3.0

3.3.0.0

Dropbox Is A Dropbox Bridge For Laravel 5

  Sources   Download

MIT

The Requires

 

The Development Requires

by Graham Campbell

laravel api framework files graham campbell grahamcampbell dropbox bridge laravel dropbox laravel-dropbox dropbox bridge

30/01 2016

v3.2.1

3.2.1.0

Dropbox Is A Dropbox Bridge For Laravel 5

  Sources   Download

MIT

The Requires

 

The Development Requires

by Graham Campbell

laravel api framework files graham campbell grahamcampbell dropbox bridge laravel dropbox laravel-dropbox dropbox bridge

14/11 2015

v3.2.0

3.2.0.0

Dropbox Is A Dropbox Bridge For Laravel 5

  Sources   Download

MIT

The Requires

 

The Development Requires

by Graham Campbell

laravel api framework files graham campbell grahamcampbell dropbox bridge laravel dropbox laravel-dropbox dropbox bridge

06/10 2015

v3.1.0

3.1.0.0

Dropbox Is A Dropbox Bridge For Laravel 5

  Sources   Download

MIT

The Requires

 

The Development Requires

by Graham Campbell

laravel api framework files graham campbell grahamcampbell dropbox bridge laravel dropbox laravel-dropbox dropbox bridge

26/06 2015

v3.0.0

3.0.0.0

Dropbox Is A Dropbox Bridge For Laravel 5

  Sources   Download

MIT

The Requires

 

The Development Requires

by Graham Campbell

laravel api framework files graham campbell grahamcampbell dropbox bridge laravel dropbox laravel-dropbox dropbox bridge

07/05 2015

v2.1.0

2.1.0.0

Dropbox Is A Dropbox Bridge For Laravel 5

  Sources   Download

MIT

The Requires

 

The Development Requires

by Graham Campbell

laravel api framework files graham campbell grahamcampbell dropbox bridge laravel dropbox laravel-dropbox dropbox bridge

05/02 2015

v2.0.0

2.0.0.0

Dropbox Is A Dropbox Bridge For Laravel 5

  Sources   Download

MIT

The Requires

 

The Development Requires

by Graham Campbell

laravel api framework files graham campbell grahamcampbell dropbox bridge laravel dropbox laravel-dropbox dropbox bridge

11/01 2015

v1.1.2

1.1.2.0

Dropbox Is A Dropbox Bridge For Laravel 4.1/4.2

  Sources   Download

MIT

The Requires

 

The Development Requires

by Graham Campbell

laravel api framework files graham campbell grahamcampbell dropbox bridge laravel dropbox laravel-dropbox dropbox bridge

19/10 2014

v1.1.1

1.1.1.0

Dropbox Is A Dropbox Bridge For Laravel 4.1/4.2

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by Graham Campbell

laravel api framework files graham campbell grahamcampbell dropbox bridge laravel dropbox laravel-dropbox dropbox bridge

10/08 2014

v1.1.0

1.1.0.0

Dropbox Is A Dropbox Bridge For Laravel 4.1+

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by Graham Campbell

laravel api framework files graham campbell grahamcampbell dropbox bridge laravel dropbox laravel-dropbox dropbox bridge

27/07 2014

v1.0.1

1.0.1.0

Dropbox Is A Dropbox Bridge For Laravel 4.1+

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by Graham Campbell

laravel api framework files graham campbell grahamcampbell dropbox bridge laravel dropbox laravel-dropbox dropbox bridge

21/07 2014

v1.0.0

1.0.0.0

Dropbox Is A Dropbox Bridge For Laravel 4.1+

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by Graham Campbell

laravel api framework files graham campbell grahamcampbell dropbox bridge laravel dropbox laravel-dropbox dropbox bridge

16/07 2014

v1.0.0-RC1

1.0.0.0-RC1

Dropbox Is A Dropbox Bridge For Laravel 4.1+

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by Graham Campbell

laravel api framework files graham campbell grahamcampbell dropbox bridge laravel dropbox laravel-dropbox dropbox bridge

31/05 2014

v0.2.0-alpha

0.2.0.0-alpha

Dropbox Is A Dropbox Bridge For Laravel 4.1

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by Graham Campbell

laravel api framework files graham campbell grahamcampbell dropbox bridge laravel dropbox laravel-dropbox

21/04 2014

v0.1.0-alpha

0.1.0.0-alpha

Dropbox Is A Dropbox Bridge For Laravel 4.1

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by Graham Campbell

laravel api framework files graham campbell grahamcampbell dropbox bridge laravel dropbox laravel-dropbox