PHPackages                             servocoder/richfilemanager-php - 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. servocoder/richfilemanager-php

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

servocoder/richfilemanager-php
==============================

PHP connector for RichFilemanager

v1.2.6(7y ago)26143.4k↓12.5%38[10 issues](https://github.com/servocoder/RichFilemanager-PHP/issues)[1 PRs](https://github.com/servocoder/RichFilemanager-PHP/pulls)2MITPHPPHP &gt;= 5.6.4

Since Apr 29Pushed 3y ago5 watchersCompare

[ Source](https://github.com/servocoder/RichFilemanager-PHP)[ Packagist](https://packagist.org/packages/servocoder/richfilemanager-php)[ RSS](/packages/servocoder-richfilemanager-php/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (10)Dependencies (4)Versions (22)Used By (2)

PHP connector for Rich Filemanager
==================================

[](#php-connector-for-rich-filemanager)

This package is the part of [RichFilemanager](https://github.com/servocoder/RichFilemanager) project.

Requires PHP &gt;= 5.6.4

Introduction
------------

[](#introduction)

PHP connector provides a flexible way to manage you files at different king of storages. There are 2 storages supported out of the box:

- [Local filesystem storage](#local-filesystem-storage)
- [AWS S3 storage](#aws-s3-storage)

Configuration details for each are described below. You create implementation for any other storage that you wish by implementing Api and Storage classes.

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

[](#installation)

```
composer require servocoder/richfilemanager-php
```

NOTE: Most likely you won't have to install PHP connector separately. It's sufficient to run composer of the main package. Check out the [installation guide](https://github.com/servocoder/RichFilemanager/wiki/PHP-connector) of RichFilemanager main package for PHP connector.

**AWS PHP SDK**

If you are going to use AWS S3 storage make sure that AWS PHP SDK package version &gt;= 3.18.0 is added to the "require" section of RichFilemanager [composer.json](https://github.com/servocoder/RichFilemanager/blob/master/composer.json) file:

```
{
  "require": {
    "servocoder/richfilemanager-php": "*",
    "aws/aws-sdk-php": "^3.18.0"
  }
}
```

FYI - Amazon PHP SDK installation guide:

Entry point setup
-----------------

[](#entry-point-setup)

RichFilemanager provides [entry point script](https://github.com/servocoder/RichFilemanager/blob/master/connectors/php/filemanager.php) out of the box, so you don't have to create it from scratch. In this section you can find explanations and examples to setup the entry script.

1. Initiate application.

```
$app = new \RFM\Application();
```

2. Create and set storage class instance. Usually you will use a single storage, but it's possible initiate instances for various storages to use both in API. For example, AWS S3 API can use S3 storage instance to manage original files and Local storage to manage image thumbnails. More details in the [Configuration](#configuration) section.

```
// local filesystem storage
$local = new \RFM\Repository\Local\Storage();
$app->setStorage($local);

// AWS S3 storage instance
$s3 = new \RFM\Repository\S3\Storage();
$app->setStorage($s3);
```

3. Create and set API class instance. You can set only one API instance unlike storage instances.

```
// local filesystem API
$app->api = new RFM\Api\LocalApi();
```

OR

```
// AWS S3 API
$app->api = new RFM\Api\AwsS3Api();
```

4. Run application.

```
$app->run();
```

Documentation
-------------

[](#documentation)

The [Wiki pages](https://github.com/servocoder/RichFilemanager-PHP/wiki) provide articles that details the following subjects:

- [Configuration](https://github.com/servocoder/RichFilemanager-PHP/wiki/Configuration)
- [Security concerns](https://github.com/servocoder/RichFilemanager-PHP/wiki/Security)
- [User storage folder setup](https://github.com/servocoder/RichFilemanager-PHP/wiki/User-storage-folder)
- [Debug and Logging](https://github.com/servocoder/RichFilemanager-PHP/wiki/Debug-and-Logging)
- [Integrations](https://github.com/servocoder/RichFilemanager-PHP/wiki#integrations)
- etc.

MIT LICENSE
-----------

[](#mit-license)

Released under the [MIT license](http://opensource.org/licenses/MIT).

###  Health Score

40

—

FairBetter than 88% of packages

Maintenance12

Infrequent updates — may be unmaintained

Popularity45

Moderate usage in the ecosystem

Community25

Small or concentrated contributor base

Maturity67

Established project with proven stability

 Bus Factor1

Top contributor holds 93.6% 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 ~22 days

Total

20

Last Release

2886d ago

PHP version history (2 changes)v1.0.0PHP &gt;= 5.4.0

v1.1.4PHP &gt;= 5.6.4

### Community

Maintainers

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

---

Top Contributors

[![psolom](https://avatars.githubusercontent.com/u/1310273?v=4)](https://github.com/psolom "psolom (117 commits)")[![frasermurraysco](https://avatars.githubusercontent.com/u/7722146?v=4)](https://github.com/frasermurraysco "frasermurraysco (2 commits)")[![refgd](https://avatars.githubusercontent.com/u/2058651?v=4)](https://github.com/refgd "refgd (2 commits)")[![leonel-lordford](https://avatars.githubusercontent.com/u/19334359?v=4)](https://github.com/leonel-lordford "leonel-lordford (1 commits)")[![dzoeteman](https://avatars.githubusercontent.com/u/614371?v=4)](https://github.com/dzoeteman "dzoeteman (1 commits)")[![SalimSalici](https://avatars.githubusercontent.com/u/16198346?v=4)](https://github.com/SalimSalici "SalimSalici (1 commits)")[![yehchge](https://avatars.githubusercontent.com/u/478405?v=4)](https://github.com/yehchge "yehchge (1 commits)")

---

Tags

phppluginconnectorfilemanagerrichfilemanager

### Embed Badge

![Health badge](/badges/servocoder-richfilemanager-php/health.svg)

```
[![Health](https://phpackages.com/badges/servocoder-richfilemanager-php/health.svg)](https://phpackages.com/packages/servocoder-richfilemanager-php)
```

###  Alternatives

[unisharp/laravel-filemanager

A file upload/editor intended for use with Laravel 5 to 10 and CKEditor / TinyMCE

2.2k3.3M74](/packages/unisharp-laravel-filemanager)[servocoder/richfilemanager

RichFilemanager - highly customizable open-source file manager

90962.0k2](/packages/servocoder-richfilemanager)[concrete5/core

Concrete core subtree split

19159.3k48](/packages/concrete5-core)[mafftor/laravel-file-manager

The file manager intended for using Laravel with CKEditor / TinyMCE / Colorbox

3619.3k](/packages/mafftor-laravel-file-manager)

PHPackages © 2026

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