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

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

zooxsmart/richfilemanager
=========================

PHP connector for RichFilemanager

2.0.0(2y ago)03.6kMITPHPPHP &gt;= 5.6.4

Since Oct 31Pushed 2y ago3 watchersCompare

[ Source](https://github.com/zooxsmart/richfilemanager)[ Packagist](https://packagist.org/packages/zooxsmart/richfilemanager)[ RSS](/packages/zooxsmart-richfilemanager/feed)WikiDiscussions main Synced today

READMEChangelogDependencies (4)Versions (4)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

24

—

LowBetter than 31% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity20

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity40

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% 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 ~45 days

Total

2

Last Release

930d ago

Major Versions

1.0.0 → 2.0.02023-12-15

### Community

Maintainers

![](https://www.gravatar.com/avatar/9155a672b863ca2243f6b3d69d61d55bf35ae8e421c1b4f1655293a34d0451ba?d=identicon)[talbuquerque](/maintainers/talbuquerque)

---

Top Contributors

[![talbuquerque](https://avatars.githubusercontent.com/u/20418669?v=4)](https://github.com/talbuquerque "talbuquerque (4 commits)")

---

Tags

phppluginconnectorfilemanagerrichfilemanager

### Embed Badge

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

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

###  Alternatives

[symfony/http-kernel

Provides a structured process for converting a Request into a Response

8.1k869.4M8.8k](/packages/symfony-http-kernel)[easycorp/easyadmin-bundle

Admin generator for Symfony applications

4.3k17.9M388](/packages/easycorp-easyadmin-bundle)[symfony/framework-bundle

Provides a tight integration between Symfony components and the Symfony full-stack framework

3.6k251.7M11.6k](/packages/symfony-framework-bundle)[symfony/security-bundle

Provides a tight integration of the Security component into the Symfony full-stack framework

2.5k185.6M2.4k](/packages/symfony-security-bundle)[unisharp/laravel-filemanager

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

2.2k3.5M85](/packages/unisharp-laravel-filemanager)[psalm/plugin-laravel

Psalm plugin for Laravel

3355.3M346](/packages/psalm-plugin-laravel)

PHPackages © 2026

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