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

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

bckr75/elfinder-flysystem-driver
================================

An utility fork of barryvdh's Flysystem Driver for elFinder

v1.0.1(2y ago)01.2kMITPHPPHP ^8.0

Since Jun 15Pushed 2y agoCompare

[ Source](https://github.com/bckr75/elfinder-flysystem-driver)[ Packagist](https://packagist.org/packages/bckr75/elfinder-flysystem-driver)[ Fund](https://fruitcake.nl)[ GitHub Sponsors](https://github.com/barryvdh)[ RSS](/packages/bckr75-elfinder-flysystem-driver/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependencies (7)Versions (3)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 bckr75/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')),
        'cache' => 'session', // 'session', 'memory' or false
    ],
    [
        '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

27

—

LowBetter than 49% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity16

Limited adoption so far

Community14

Small or concentrated contributor base

Maturity50

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 68.7% 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 ~0 days

Total

2

Last Release

1058d ago

### Community

Maintainers

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

---

Top Contributors

[![barryvdh](https://avatars.githubusercontent.com/u/973269?v=4)](https://github.com/barryvdh "barryvdh (90 commits)")[![nao-pon](https://avatars.githubusercontent.com/u/1412630?v=4)](https://github.com/nao-pon "nao-pon (31 commits)")[![adridev](https://avatars.githubusercontent.com/u/895348?v=4)](https://github.com/adridev "adridev (2 commits)")[![grossmannmartin](https://avatars.githubusercontent.com/u/1177414?v=4)](https://github.com/grossmannmartin "grossmannmartin (1 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)")[![noogen](https://avatars.githubusercontent.com/u/95691?v=4)](https://github.com/noogen "noogen (1 commits)")[![taylankasap](https://avatars.githubusercontent.com/u/4192479?v=4)](https://github.com/taylankasap "taylankasap (1 commits)")[![WesleyE](https://avatars.githubusercontent.com/u/649984?v=4)](https://github.com/WesleyE "WesleyE (1 commits)")[![buzzclue](https://avatars.githubusercontent.com/u/43321373?v=4)](https://github.com/buzzclue "buzzclue (1 commits)")[![delatbabel](https://avatars.githubusercontent.com/u/2335362?v=4)](https://github.com/delatbabel "delatbabel (1 commits)")

---

Tags

filesystemFlysystemelfinder

###  Code Quality

TestsPHPUnit

Static AnalysisPHPStan

Code StylePHP\_CodeSniffer

Type Coverage Yes

### Embed Badge

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

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

###  Alternatives

[league/flysystem-aws-s3-v3

AWS S3 filesystem adapter for Flysystem.

1.6k263.6M784](/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)
