PHPackages                             geryjuhasz/laravel-dropbox - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Framework](/categories/framework)
4. /
5. geryjuhasz/laravel-dropbox

ActiveLibrary[Framework](/categories/framework)

geryjuhasz/laravel-dropbox
==========================

Dropbox Is A Dropbox Bridge For Laravel 5

v4.0.0(8y ago)025PHP

Since Apr 21Pushed 8y ago2 watchersCompare

[ Source](https://github.com/geryjuhasz/Laravel-Dropbox)[ Packagist](https://packagist.org/packages/geryjuhasz/laravel-dropbox)[ Docs](https://github.com/geryjuhasz/Laravel-Dropbox)[ RSS](/packages/geryjuhasz-laravel-dropbox/feed)WikiDiscussions master Synced 2d ago

READMEChangelog (1)Dependencies (7)Versions (18)Used By (0)

[![Percentage of issues still open](https://camo.githubusercontent.com/e98073aee134efec675dd822a32f175d57052242209d9359ee07d2047de5b18d/687474703a2f2f697369746d61696e7461696e65642e636f6d2f62616467652f6f70656e2f616c6f72656c2f64726f70626f782d76322d7068702e737667)](http://isitmaintained.com/project/alorel/dropbox-v2-php "Percentage of issues still open")[![Build Status](https://camo.githubusercontent.com/1131ef174997ea5ee2d0b118aa77442fc976509a8d02c5a9054ddff5340fdd7c/68747470733a2f2f7472617669732d63692e6f72672f416c6f72656c2f64726f70626f782d76322d7068702e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/Alorel/dropbox-v2-php)[![codecov](https://camo.githubusercontent.com/01bfdb9432f894fa7c6dc3306aafc23ff912b944af4343a348f832ab0a5fe002/68747470733a2f2f636f6465636f762e696f2f67682f416c6f72656c2f64726f70626f782d76322d7068702f6272616e63682f6d61737465722f67726170682f62616467652e737667)](https://codecov.io/gh/Alorel/dropbox-v2-php)[![Dependency Status](https://camo.githubusercontent.com/955cc001d3fe8478a3b520920ca8cc177524fba1f40a312f2626a56427ab72cd/68747470733a2f2f7777772e76657273696f6e6579652e636f6d2f757365722f70726f6a656374732f3537353662643662373735376130303034613164653135302f62616467652e737667)](https://www.versioneye.com/user/projects/5756bd6b7757a0004a1de150)

[![Latest Stable Version](https://camo.githubusercontent.com/c8ca83e7a5180c37c16e5b076ee9d2a3a75330c7edbe43479de411f369a62ab1/68747470733a2f2f706f7365722e707567782e6f72672f616c6f72656c2f64726f70626f782d76322d7068702f762f737461626c65)](https://packagist.org/packages/alorel/dropbox-v2-php)[![Total Downloads](https://camo.githubusercontent.com/2050513ca2c664a05acad9737c55e658637ca40ec0a2ea437deefaf204a86374/68747470733a2f2f706f7365722e707567782e6f72672f616c6f72656c2f64726f70626f782d76322d7068702f646f776e6c6f616473)](https://packagist.org/packages/alorel/dropbox-v2-php)[![License](https://camo.githubusercontent.com/f786f3c66ed62e0c86f93ad49ec21046d4f4636d9b9acd478323c8585aa69572/68747470733a2f2f706f7365722e707567782e6f72672f616c6f72656c2f64726f70626f782d76322d7068702f6c6963656e7365)](https://packagist.org/packages/alorel/dropbox-v2-php)

Tested with PHP 5.6-7.1 and HHVM 3.18. See the [CI builds](https://travis-ci.org/Alorel/dropbox-v2-php/builds) page for the most accurate, up-to-date version list.

---

Maintainer(s) needed!
=====================

[](#maintainers-needed)

\[10 Feb 2017\] Unfortunately, I do not have time to maintain this SDK. I do not expect it to become out-of-date in terms of functionality for at least another year, but it won't be adding any new functionality. Please [open an issue](https://github.com/Alorel/dropbox-v2-php/issues) if you're interested.

---

A PHP SDK for Dropbox's v2 API. If you haven't tried Dropbox out yet, [do](https://db.tt/u56WHf8q "referral link") - it's great!

Table of Contents
=================

[](#table-of-contents)

1. [Installation](#installation)
2. [Usage](#usage)
3. [Supported API operations](#supported-api-operations)
4. [API Documentation](#api-documentation)

Installation
============

[](#installation)

Installation is only available via [Composer](https://getcomposer.org/).

Quick version:
--------------

[](#quick-version)

```
composer require alorel/dropbox-v2-php
```

More informed version:
----------------------

[](#more-informed-version)

The package is still in its `0.x` development stage, therefore adding it as a `^` dependency, e.g. `"alorel/dropbox-v2-php":"^0.1"` will severely limit the amount of updates you receive, as, per [semver](http://semver.org/#spec-item-4) specification, `0.2` is allowed to be backwards-incompatible with `0.1`. While I definitely cannot guarantee **full** backwards compatibility if you fiddle with protected methods and derive your own subclasses, I do guarantee that the public API will remain backwards-compatible, therefore, if you only use the `raw` methods in your application e.g.

```
$options = new UploadOptions(); //set your options
(new Upload())->raw('/file.txt', 'data', $options);
```

You can safely add the following as a dependency in your composer.json:

```
{
  "require": {
    "alorel/dropbox-v2-php": ">=0.4
