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)075MITPHPPHP &gt;=8.0

Since Feb 25Pushed 11mo ago1 watchersCompare

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

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 64% of packages

Maintenance49

Moderate activity, may be stable

Popularity10

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity47

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

349d ago

Major Versions

v1.0.1 → v2.0.02025-02-27

### Community

Maintainers

![](https://www.gravatar.com/avatar/a2d3596d40f0524bf1f8300edce57faeda972783d65bda5524e3b758dc9f7f8f?d=identicon)[haiman4real](/maintainers/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

[aws/aws-sdk-php-laravel

A simple Laravel 9/10/11/12/13 service provider for including the AWS SDK for PHP.

1.7k35.6M75](/packages/aws-aws-sdk-php-laravel)[stechstudio/laravel-zipstream

A fast and simple streaming zip file downloader for Laravel.

4633.7M3](/packages/stechstudio-laravel-zipstream)[rahulhaque/laravel-filepond

Use FilePond the Laravel way

261114.4k2](/packages/rahulhaque-laravel-filepond)

PHPackages © 2026

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