PHPackages                             emmaogunwobi/filemanager - 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. emmaogunwobi/filemanager

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

emmaogunwobi/filemanager
========================

A file upload and management package for Laravel

v2.1.0(1y ago)078MITPHPPHP &gt;=8.0

Since Feb 25Pushed 1y ago1 watchersCompare

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

READMEChangelogDependencies (2)Versions (8)Used By (0)

File Manager by Emmanuel Ogunwobi
=================================

[](#file-manager-by-emmanuel-ogunwobi)

Welcome to the File Manager package for the Laravel project. This package provides functionalities to manage files within the application.

Features
--------

[](#features)

- Upload files
- Download files
- Delete files
- List files

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

[](#installation)

To install the package, run:

```
composer require emmaogunwobi/filemanager
```

```
php artisan vendor:publish --provider="Emmaogunwobi\FileManager\FileManagerServiceProvider" --tag=config
```

```
php artisan migrate
```

Usage
-----

[](#usage)

Import the package and use the provided methods to manage files

Add the following to the config/app.php file to activate the Facade service

```
'aliases' => [
    // ...
    'FileManager' => Emmaogunwobi\FileManager\Facades\FileManager::class,
],
```

You can use via the Dependency Injection

```
use Emmaogunwobi\FileManager\Services\FileManagerService;

class SomeController extends Controller
{
    protected $fileManager;

    public function __construct(FileManagerService $fileManager)
    {
        $this->fileManager = $fileManager;
    }

    public function someMethod()
    {
        $result = $this->fileManager->upload('/path/to/file.jpg');
        // Do something with $result
    }
}
```

or via the Facade

```
use FileManager; // Assuming you've set up the alias

class SomeController extends Controller
{
    public function someMethod()
    {
        $result = FileManager::upload('/path/to/file.jpg');
        // Do something with $result
    }
}
```

Contributing
------------

[](#contributing)

Contributions are welcome! Please open an issue or submit a pull request.

License
-------

[](#license)

This project is licensed under the MIT License.

###  Health Score

30

—

LowBetter than 62% of packages

Maintenance46

Moderate activity, may be stable

Popularity9

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity48

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 ~16 days

Recently: every ~24 days

Total

7

Last Release

395d ago

Major Versions

v1.0.1 → v2.0.02025-02-27

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/8198431?v=4)[\_\_hemmy](/maintainers/haiman4real)[@haiman4real](https://github.com/haiman4real)

---

Top Contributors

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

### Embed Badge

![Health badge](/badges/emmaogunwobi-filemanager/health.svg)

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

###  Alternatives

[api-platform/laravel

API Platform support for Laravel

58171.5k14](/packages/api-platform-laravel)[illuminate/filesystem

The Illuminate Filesystem package.

16165.0M3.2k](/packages/illuminate-filesystem)[tomshaw/electricgrid

A feature-rich Livewire package designed for projects that require dynamic, interactive data tables.

119.4k](/packages/tomshaw-electricgrid)

PHPackages © 2026

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