PHPackages                             maze/modern-file-manager - 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. maze/modern-file-manager

AbandonedArchivedLibrary

maze/modern-file-manager
========================

The only file manager you need.

14JavaScript

Since Feb 20Pushed 6y ago1 watchersCompare

[ Source](https://github.com/g3ru1a/ModernFileManager)[ Packagist](https://packagist.org/packages/maze/modern-file-manager)[ RSS](/packages/maze-modern-file-manager/feed)WikiDiscussions master Synced today

READMEChangelogDependenciesVersions (1)Used By (0)

Modern File Manager
===================

[](#modern-file-manager)

### Preview

[](#preview)

[![enter image description here](https://camo.githubusercontent.com/6316800a4cf4dc2d61c5d7006bae0ed690f865f520176e330f4472c8ab0fb552/68747470733a2f2f6c68332e676f6f676c6575736572636f6e74656e742e636f6d2f6670334737683735334277565a6f775231734f5a77777054313375326b31564f44316c5a716854786e46564734656a59542d73452d4e316264326759786f35416a445a4c6c5a6a6f657a6f354d6b51467270545a68417372616570674d636949304d30736a64354f616f37535946764c766549657747537659765a7a56497546624a71705650696e446e4e37633331753679747072675a7a5138475148616e6366656d6c6a33396f5155533848705a626a625449527a735033456f456b754c646a3648337863544335737744665a4d576f5f7845474754336b4a635267703575626a4f6b70755944734f562d6444327a7a6e65777038534c794a7956383755424e737a3461665f4636757a353453346d6477324f6a574c534e6b414a786c3530685a54744b5a6f6d6d706a687367475955317a5172625a4d704371506f4169517a6f74677738766d5f367346754e756a43506942323277354346354d6b4162492d3676426b56685778506865525f3152516e72754874476d67714b6c52515f79685968786c7059704671595441557233566e514f566c41334e464154775969636f6b444a554a6a3064446a4d3064705650643539375a45786b2d5a7466685f7475597937525271326169567a4b437976765a487434794d6f34764a764235314b69736c78746d666a6a485f766e78385142345162544536374871503639422d654d5f3250672d6d526c306d6c63756b4f5a42334a6c2d68436337534d44714b67304a5131654b6a4e51397237692d4558743467487279413165547a4872435a6735664a4b4a694352574f44496769473854675a5136525f516a5944506e4d57775a76556b754b45723137635a545154353379434a31437657464b412d4a654a5631564d616762315942562d622d4153726568744f732d32745947705145414c336d4735636d6f6842654d6859785870347138503233644a6369506d2d4e376b3d77323532302d68313333392d6674)](https://camo.githubusercontent.com/6316800a4cf4dc2d61c5d7006bae0ed690f865f520176e330f4472c8ab0fb552/68747470733a2f2f6c68332e676f6f676c6575736572636f6e74656e742e636f6d2f6670334737683735334277565a6f775231734f5a77777054313375326b31564f44316c5a716854786e46564734656a59542d73452d4e316264326759786f35416a445a4c6c5a6a6f657a6f354d6b51467270545a68417372616570674d636949304d30736a64354f616f37535946764c766549657747537659765a7a56497546624a71705650696e446e4e37633331753679747072675a7a5138475148616e6366656d6c6a33396f5155533848705a626a625449527a735033456f456b754c646a3648337863544335737744665a4d576f5f7845474754336b4a635267703575626a4f6b70755944734f562d6444327a7a6e65777038534c794a7956383755424e737a3461665f4636757a353453346d6477324f6a574c534e6b414a786c3530685a54744b5a6f6d6d706a687367475955317a5172625a4d704371506f4169517a6f74677738766d5f367346754e756a43506942323277354346354d6b4162492d3676426b56685778506865525f3152516e72754874476d67714b6c52515f79685968786c7059704671595441557233566e514f566c41334e464154775969636f6b444a554a6a3064446a4d3064705650643539375a45786b2d5a7466685f7475597937525271326169567a4b437976765a487434794d6f34764a764235314b69736c78746d666a6a485f766e78385142345162544536374871503639422d654d5f3250672d6d526c306d6c63756b4f5a42334a6c2d68436337534d44714b67304a5131654b6a4e51397237692d4558743467487279413165547a4872435a6735664a4b4a694352574f44496769473854675a5136525f516a5944506e4d57775a76556b754b45723137635a545154353379434a31437657464b412d4a654a5631564d616762315942562d622d4153726568744f732d32745947705145414c336d4735636d6f6842654d6859785870347138503233644a6369506d2d4e376b3d77323532302d68313333392d6674)

### Installation

[](#installation)

In your terminal of choice run these two commands:

```
composer require maze/modern-file-manager
php artisan vendor:publish --tag=public --force

```

### Usage

[](#usage)

To use this package you have to do two things:

**1. Create the MFM Object**
Use the Object at the top of your controller file

```
 use MAZE\MFM\Models\MFM;

```

Add the following in your function

```
$path = str_replace('-', '/', 'path/to/main-directory);
$mfm = new MFM($path);
return view('example-view', ['mfm'=>$mfm]);

```

**2. Include the blade view**

Add the following in your view

```
@include("mfm::includable", ['mfm'=>$mfm])

```

### Features

[](#features)

This package is a wip, here's what I've done so far and what I plan to add.

- Directory Tree
- Top Bar buttons (not functional)
- File box view
- File list view
- Create Files/Folders
- Edit Files/Folders
- Upload Files
- Download Files
- Compress Files
- Uncompress Files
- Copy/Paste/Cut/Delete Files/Folders
- Rename Files/Folders

###  Health Score

18

—

LowBetter than 8% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity5

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity34

Early-stage or recently created project

 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.

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/32644617?v=4)[Ed](/maintainers/G3ru1a)[@g3ru1a](https://github.com/g3ru1a)

---

Top Contributors

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

### Embed Badge

![Health badge](/badges/maze-modern-file-manager/health.svg)

```
[![Health](https://phpackages.com/badges/maze-modern-file-manager/health.svg)](https://phpackages.com/packages/maze-modern-file-manager)
```

PHPackages © 2026

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