PHPackages                             apatris/elfinder-flysystem-driver - 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. apatris/elfinder-flysystem-driver

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

apatris/elfinder-flysystem-driver
=================================

A Flysystem Driver for elFinder

v0.2.3(9y ago)085MITPHPPHP &gt;=5.4

Since Jan 28Pushed 9y ago1 watchersCompare

[ Source](https://github.com/apatris/elfinder-flysystem-driver)[ Packagist](https://packagist.org/packages/apatris/elfinder-flysystem-driver)[ RSS](/packages/apatris-elfinder-flysystem-driver/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (3)Dependencies (3)Versions (12)Used By (0)

elFinder Flysystem Driver
-------------------------

[](#elfinder-flysystem-driver)

> This package adds a VolumeDriver for elFinder to use Flysystem as a root in your system. You need to have elFinder 2.1 installed. You can download the source or nightlies from  or use the Laravel version:

Require this package in your composer.json and update composer.

```
composer require barryvdh/elfinder-flysystem-driver

```

This will require Flysystem, but you might need additional adapters to fit your purpose. See  for more information.

### Basic usage

[](#basic-usage)

You can use the driver by setting the connector config to Flysystem.

```
'roots' => [
    [
        'driver' => 'Flysystem',
        'path' => 'images',
        'URL' => '/images',
        'filesystem' => new Filesystem(new LocalAdapter('/path/to/public_html'))
    ],
    [
        'driver' => 'Flysystem',
        'URL' => 'http://mydomain.com/content',
        'alias' => 'Mydomain.com',
        'filesystem' => new Filesystem(new FtpAdapter(
                [
                    'host' => 'mydomain.com',
                    'username' => 'user',
                    'password' => '****',
                    'root' => '/domains/mydomain.com/public_html/content',
                ]
            )),
    ],
    [
        'driver' => 'Flysystem',
        'adapter' => new DropboxAdapter(new Dropbox\Client($token, $appName))
    ],
];

```

The `path` and `URL` options are optional. The path defaults to '/', the URL is only possible when the file is visible through an URL.

### Displaying thumbnails/images through Glide

[](#displaying-thumbnailsimages-through-glide)

If you require [Glide](https://github.com/thephpleague/glide), you can show thumbnails for your images and generate secure urls.

```
[
    'driver' => 'Flysystem',
    'filesystem' => $fs,
    'glideURL' => 'http://domain.com/glideserver',
    'glideKey' => 'your-sign-key',
],

```

You can still use the tmbSize and tmbCrop options from the [configuration options](https://github.com/Studio-42/elFinder/wiki/Connector-configuration-options-2.1#root-options)

This will require you to setup a basic server with Glide, see A signKey is optional, but can help secure your images against changing parameters.

> Note: When securing image, you need to remove the `_` parameter from your Request object: `$request->query->remove('_');`Otherwise the signature will fail. The `_` parameter is used to disable caching.

### License

[](#license)

This elFinder driver is open-sourced software licensed under the [MIT license](http://opensource.org/licenses/MIT)

###  Health Score

26

—

LowBetter than 43% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity9

Limited adoption so far

Community13

Small or concentrated contributor base

Maturity55

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 65% of commits — single point of failure

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.

###  Release Activity

Cadence

Every ~73 days

Recently: every ~56 days

Total

10

Last Release

3461d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/bd6c5a7e9379d4151d9784eee1fea91effd584a8ca25d01dfff1c968e75f04aa?d=identicon)[apatris](/maintainers/apatris)

---

Top Contributors

[![barryvdh](https://avatars.githubusercontent.com/u/973269?v=4)](https://github.com/barryvdh "barryvdh (65 commits)")[![nao-pon](https://avatars.githubusercontent.com/u/1412630?v=4)](https://github.com/nao-pon "nao-pon (27 commits)")[![apatris](https://avatars.githubusercontent.com/u/13943640?v=4)](https://github.com/apatris "apatris (3 commits)")[![adridev](https://avatars.githubusercontent.com/u/895348?v=4)](https://github.com/adridev "adridev (2 commits)")[![hotrush](https://avatars.githubusercontent.com/u/1247004?v=4)](https://github.com/hotrush "hotrush (1 commits)")[![lianee](https://avatars.githubusercontent.com/u/15734521?v=4)](https://github.com/lianee "lianee (1 commits)")[![WesleyE](https://avatars.githubusercontent.com/u/649984?v=4)](https://github.com/WesleyE "WesleyE (1 commits)")

---

Tags

filesystemFlysystemelfinder

### Embed Badge

![Health badge](/badges/apatris-elfinder-flysystem-driver/health.svg)

```
[![Health](https://phpackages.com/badges/apatris-elfinder-flysystem-driver/health.svg)](https://phpackages.com/packages/apatris-elfinder-flysystem-driver)
```

###  Alternatives

[league/flysystem-aws-s3-v3

AWS S3 filesystem adapter for Flysystem.

1.6k263.6M782](/packages/league-flysystem-aws-s3-v3)[barryvdh/elfinder-flysystem-driver

A Flysystem Driver for elFinder

1864.7M31](/packages/barryvdh-elfinder-flysystem-driver)[league/flysystem-local

Local filesystem adapter for Flysystem.

226231.8M39](/packages/league-flysystem-local)[oneup/flysystem-bundle

Integrates Flysystem filesystem abstraction library to your Symfony project.

64422.9M65](/packages/oneup-flysystem-bundle)[league/flysystem-bundle

Symfony bundle integrating Flysystem into Symfony applications

40029.5M86](/packages/league-flysystem-bundle)[league/flysystem-sftp-v3

SFTP filesystem adapter for Flysystem.

6129.6M91](/packages/league-flysystem-sftp-v3)

PHPackages © 2026

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