PHPackages                             hcipl/dropzone-with-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. [File &amp; Storage](/categories/file-storage)
4. /
5. hcipl/dropzone-with-dropbox

ActiveLaravel-module[File &amp; Storage](/categories/file-storage)

hcipl/dropzone-with-dropbox
===========================

Dropzone file upload with dropbox

00PHP

Since Jun 14Pushed 2y ago1 watchersCompare

[ Source](https://github.com/zinalpatel16/DropzoneWithDropbox)[ Packagist](https://packagist.org/packages/hcipl/dropzone-with-dropbox)[ RSS](/packages/hcipl-dropzone-with-dropbox/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

Dropzone with Dropbox Package
=============================

[](#dropzone-with-dropbox-package)

##### Dropzone file upload with dropbox.

[](#dropzone-file-upload-with-dropbox)

Live url : ()

Usage
-----

[](#usage)

1. Install the package: "composer require hcipl/dropzone-with-dropbox".
2. Configure your database ".env" file.
3. The first thing you need to do is get an authorization token at Dropbox. Unlike [other companies](https://google.com) Dropbox has made this very easy. You can just generate a token 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/).
4. Set dropbox configuration on your .env file
5. Configure Dropbox as Driver in AppServiceProvider.php

```
    public function boot()
    {

        Storage::extend('dropbox', function (Application $app, array $config) {

            $adapter = new DropboxAdapter(new DropboxClient(
                $config['authorization_token']
            ));

            return new FilesystemAdapter(
                new Filesystem($adapter, $config),
                $adapter,
                $config
            );
        });
    }

```

6. Add a new driver on the config/filesystems.php inside "disks".

```
	'dropbox' => [
        'driver' => 'dropbox',
        'key' => env('DROPBOX_APP_KEY'),
        'secret' => env('DROPBOX_APP_SECRET'),
        'authorization_token' => env('DROPBOX_AUTHORIZATION_TOKEN', null),
        'case_sensitive' => true,
    ]

```

7. Run migration: "php artisan migrate"
8. Run project server "php artisan serve",
9. Test url ""

Views Modification
------------------

[](#views-modification)

###### In order to modify the dropzone:

[](#in-order-to-modify-the-dropzone)

1. Select the option which depicts "Provider:Hcipl\\dropzoneWithDropbox\\DropzoneWithDropboxServiceProvider".
2. Run below command to publish the assests. php artisan vendor:publish --tag=public --force

###  Health Score

12

—

LowBetter than 0% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity0

Limited adoption so far

Community4

Small or concentrated contributor base

Maturity22

Early-stage or recently created project

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

### Community

Maintainers

![](https://www.gravatar.com/avatar/73dc443bc9813e0c599cd91598d6e570cbc79db611519de578427be5d0a18bdf?d=identicon)[zinalpatel16](/maintainers/zinalpatel16)

### Embed Badge

![Health badge](/badges/hcipl-dropzone-with-dropbox/health.svg)

```
[![Health](https://phpackages.com/badges/hcipl-dropzone-with-dropbox/health.svg)](https://phpackages.com/packages/hcipl-dropzone-with-dropbox)
```

###  Alternatives

[knplabs/gaufrette

PHP library that provides a filesystem abstraction layer

2.5k39.8M123](/packages/knplabs-gaufrette)[google/cloud-storage

Cloud Storage Client for PHP

34390.8M125](/packages/google-cloud-storage)[illuminate/filesystem

The Illuminate Filesystem package.

15261.6M2.6k](/packages/illuminate-filesystem)[superbalist/flysystem-google-storage

Flysystem adapter for Google Cloud Storage

26320.6M30](/packages/superbalist-flysystem-google-storage)[creocoder/yii2-flysystem

The flysystem extension for the Yii framework

2931.7M62](/packages/creocoder-yii2-flysystem)[flowjs/flow-php-server

PHP library for handling chunk uploads. Works with flow.js html5 file uploads.

2451.6M15](/packages/flowjs-flow-php-server)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
