PHPackages                             wieni/wmcontroller\_flysystem - 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. wieni/wmcontroller\_flysystem

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

wieni/wmcontroller\_flysystem
=============================

A Flysystem cache storage for wieni/wmcontroller

1.0.1(3y ago)05611[1 issues](https://github.com/wieni/wmcontroller_flysystem/issues)[1 PRs](https://github.com/wieni/wmcontroller_flysystem/pulls)MITPHPPHP ^8.0CI failing

Since Feb 22Pushed 3y ago5 watchersCompare

[ Source](https://github.com/wieni/wmcontroller_flysystem)[ Packagist](https://packagist.org/packages/wieni/wmcontroller_flysystem)[ RSS](/packages/wieni-wmcontroller-flysystem/feed)WikiDiscussions main Synced 6d ago

READMEChangelog (3)Dependencies (5)Versions (7)Used By (0)

wmcontroller\_flysystem
=======================

[](#wmcontroller_flysystem)

[![Latest Stable Version](https://camo.githubusercontent.com/4220972cfaf8f67c29af16a1523c8e476d9d97170e5b2eb1b5b678b8ed98a46b/68747470733a2f2f706f7365722e707567782e6f72672f7769656e692f776d636f6e74726f6c6c65725f666c7973797374656d2f762f737461626c65)](https://packagist.org/packages/wieni/wmcontroller_flysystem)[![Total Downloads](https://camo.githubusercontent.com/ec2b0d7f9ce52f4ab829e03913a8d0dac31613d418e9846e9e3bcd963b4138d3/68747470733a2f2f706f7365722e707567782e6f72672f7769656e692f776d636f6e74726f6c6c65725f666c7973797374656d2f646f776e6c6f616473)](https://packagist.org/packages/wieni/wmcontroller_flysystem)[![License](https://camo.githubusercontent.com/061cda599f7bbcd3774fac6c1114b34894b06b766f269b6aaffe79d0163f0df6/68747470733a2f2f706f7365722e707567782e6f72672f7769656e692f776d636f6e74726f6c6c65725f666c7973797374656d2f6c6963656e7365)](https://packagist.org/packages/wieni/wmcontroller_flysystem)

> A [Flysystem](https://flysystem.thephpleague.com) cache storage for [wieni/wmcontroller](https://github.com/wieni/wmcontroller)

Installation
------------

[](#installation)

This package requires PHP 8.0 and Drupal 9 or higher. It can be installed using Composer:

```
 composer require wieni/wmcontroller_flysystem
```

To enable this cache storage, change the following container parameters:

```
parameters:
    wmcontroller.cache.storage: wmcontroller.cache.storage.flysystem

    # Backend storage responsible for keeping track of tags and cache entries
    wmcontroller.cache.flysystem.backend.storage: wmcontroller.cache.storage.mysql

    wmcontroller.cache.flysystem.scheme: wmcontrollerscheme
    wmcontroller.cache.flysystem.directory: wmcontroller
```

Make sure to also set the flysystem scheme in `settings.php`.

```
// settings.php

$settings['flysystem'] = [
    'wmcontrollerscheme' => [
        'driver' => 'local',
        'config' => [
            'root' => 'sites/default/cache',
            'public' => false,
        ],
        'serve_js' => true,
        'serve_css' => true,
    ],
];

// Or if you want to store your cache on S3
// This requires the drupal/flysystem_s3 module
$settings['flysystem'] = [
    'wmcontrollerscheme' => [
        'driver' => 's3',
        'config' => [
            'key' => $_ENV['S3_KEY'],
            'secret' => $_ENV['S3_SECRET'],
            'region' => $_ENV['S3_REGION'],
            'bucket' => $_ENV['S3_BUCKET'],
            'prefix' => $_ENV['S3_PREFIX'] ?? '',
            'cname' => $_ENV['S3_CNAME'] ?? '',
            'options' => [
                'ACL' => 'private',
            ],
            'protocol' => 'https',
            'public' => false,
        ],
        'cache' => false,
        'serve_js' => false,
        'serve_css' => false,
    ],
];
```

Changelog
---------

[](#changelog)

All notable changes to this project will be documented in the [CHANGELOG](CHANGELOG.md) file.

Security
--------

[](#security)

If you discover any security-related issues, please email  instead of using the issue tracker.

License
-------

[](#license)

Distributed under the MIT License. See the [LICENSE](LICENSE) file for more information.

###  Health Score

32

—

LowBetter than 72% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity16

Limited adoption so far

Community12

Small or concentrated contributor base

Maturity69

Established project with proven stability

 Bus Factor1

Top contributor holds 50% 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 ~305 days

Total

5

Last Release

1419d ago

Major Versions

0.9.0 → 1.0.02021-08-24

PHP version history (2 changes)0.9.0PHP &gt;=7.1.0

1.0.0PHP ^8.0

### Community

Maintainers

![](https://www.gravatar.com/avatar/734199ae17f8da336fef9ba81f7c37cda09b0f9a952f551235c32ecfad68488b?d=identicon)[Wieni](/maintainers/Wieni)

---

Top Contributors

[![DieterHolvoet](https://avatars.githubusercontent.com/u/3606531?v=4)](https://github.com/DieterHolvoet "DieterHolvoet (4 commits)")[![RobinHoutevelts](https://avatars.githubusercontent.com/u/9056689?v=4)](https://github.com/RobinHoutevelts "RobinHoutevelts (4 commits)")

---

Tags

drupal-8drupal-moduledrupal8-moduleflysystemwmcontrollerwmcontroller-storage

### Embed Badge

![Health badge](/badges/wieni-wmcontroller-flysystem/health.svg)

```
[![Health](https://phpackages.com/badges/wieni-wmcontroller-flysystem/health.svg)](https://phpackages.com/packages/wieni-wmcontroller-flysystem)
```

###  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)
