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

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

mariojrrc/richfilemanager-php
=============================

PHP connector for RichFilemanager

v1.2.10(2y ago)08.5kMITPHPPHP &gt;= 5.6.4

Since Apr 29Pushed 2y agoCompare

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

READMEChangelogDependencies (4)Versions (26)Used By (0)

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

33

—

LowBetter than 75% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity18

Limited adoption so far

Community12

Small or concentrated contributor base

Maturity68

Established project with proven stability

 Bus Factor1

Top contributor holds 94.3% 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 ~98 days

Recently: every ~463 days

Total

24

Last Release

1026d 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/8a126b1210becc8c250c8ba1f6e8a5514e3ec5dd48acdc937d60fdf230e0dad4?d=identicon)[mariojrrc](/maintainers/mariojrrc)

---

Top Contributors

[![psolom](https://avatars.githubusercontent.com/u/1310273?v=4)](https://github.com/psolom "psolom (115 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)")[![dzoeteman](https://avatars.githubusercontent.com/u/614371?v=4)](https://github.com/dzoeteman "dzoeteman (1 commits)")[![leonel-lordford](https://avatars.githubusercontent.com/u/19334359?v=4)](https://github.com/leonel-lordford "leonel-lordford (1 commits)")[![SalimSalici](https://avatars.githubusercontent.com/u/16198346?v=4)](https://github.com/SalimSalici "SalimSalici (1 commits)")

---

Tags

phppluginconnectorfilemanagerrichfilemanager

### Embed Badge

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

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

###  Alternatives

[servocoder/richfilemanager-php

PHP connector for RichFilemanager

26143.4k2](/packages/servocoder-richfilemanager-php)[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)
