shell bypass 403
# flysystem-dropbox-v2 [](https://packagist.org/packages/srmklive/flysystem-dropbox-v2) [](https://styleci.io/repos/90866593) [](https://travis-ci.org/srmklive/flysystem-dropbox-v2) [](https://scrutinizer-ci.com/g/srmklive/flysystem-dropbox-v2/?branch=master) [](https://coveralls.io/github/srmklive/flysystem-dropbox-v2?branch=master) [](https://insight.sensiolabs.com/projects/5140968d-c422-4a3d-94e0-c1301f2ad3bb) [](https://ci.appveyor.com/project/srmklive/flysystem-dropbox-v2) This package contains a [Flysystem](https://flysystem.thephpleague.com/) adapter for Dropbox API v2. # Credits This package is direct port of [Flysystem Dropbox](https://github.com/spatie/flysystem-dropbox) by [Freek Van der Herten](https://github.com/freekmurze) with support for PHP 5.5 & 5.6. # Installation You can install the package via composer: ``` bash composer require srmklive/flysystem-dropbox-v2 ``` ## Usage The first thing you need to do is get an authorization token at Dropbox. A token can be generated in the [App Console](https://www.dropbox.com/developers/apps) for any Dropbox API app. You'll find more info at [the Dropbox Developer Blog](https://blogs.dropbox.com/developers/2014/05/generate-an-access-token-for-your-own-account/). ``` php use League\Flysystem\Filesystem; use Srmklive\Dropbox\Client\DropboxClient; use Srmklive\Dropbox\Adapter\DropboxAdapter; $client = new DropboxClient($authorizationToken); $adapter = new DropboxAdapter($client); $filesystem = new Filesystem($adapter); ``` # Testing ``` bash $ composer test ```