PHPackages                             nordsoftware/lumen-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. [File &amp; Storage](/categories/file-storage)
4. /
5. nordsoftware/lumen-file-manager

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

nordsoftware/lumen-file-manager
===============================

File manager module for the Lumen framework.

2.2.0(8y ago)382.4k1[2 issues](https://github.com/digiaonline/lumen-file-manager/issues)2MITPHPPHP &gt;=5.6

Since Jul 5Pushed 8y ago1 watchersCompare

[ Source](https://github.com/digiaonline/lumen-file-manager)[ Packagist](https://packagist.org/packages/nordsoftware/lumen-file-manager)[ RSS](/packages/nordsoftware-lumen-file-manager/feed)WikiDiscussions develop Synced 1mo ago

READMEChangelogDependencies (3)Versions (31)Used By (2)

Lumen File Manager
==================

[](#lumen-file-manager)

[![Code Climate](https://camo.githubusercontent.com/134422130e4d5286ba21d24a01f31324b3ee097befe08b5621578c6383faaae9/68747470733a2f2f636f6465636c696d6174652e636f6d2f6769746875622f6e6f7264736f6674776172652f6c756d656e2d66696c652d6d616e616765722f6261646765732f6770612e737667)](https://codeclimate.com/github/nordsoftware/lumen-file-manager)[![Scrutinizer Code Quality](https://camo.githubusercontent.com/598b91d0d36c157005cea444c69ee6ffa271959a5c1bf9b08d8c7c482b0b884f/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f6e6f7264736f6674776172652f6c756d656e2d66696c652d6d616e616765722f6261646765732f7175616c6974792d73636f72652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/nordsoftware/lumen-file-manager/?branch=master)[![StyleCI](https://camo.githubusercontent.com/232adeaea947d1beacd3634a788fd1bb7c86d541550c910f6f30c79e79250e2e/68747470733a2f2f7374796c6563692e696f2f7265706f732f33383537323436362f736869656c643f7374796c653d666c6174)](https://styleci.io/repos/38572466)[![Latest Stable Version](https://camo.githubusercontent.com/a517c4ebec0dce1aa62e71a56fb23e60d59c2a7ce19a5b91abc8b741e77e9207/68747470733a2f2f706f7365722e707567782e6f72672f6e6f7264736f6674776172652f6c756d656e2d66696c652d6d616e616765722f76657273696f6e)](https://packagist.org/packages/nordsoftware/lumen-file-manager)[![Total Downloads](https://camo.githubusercontent.com/6a870004d0e117d1c2418bd6c050115c6e815f68fd6c130bf38dd7d75710312d/68747470733a2f2f706f7365722e707567782e6f72672f6e6f7264736f6674776172652f6c756d656e2d66696c652d6d616e616765722f646f776e6c6f616473)](https://packagist.org/packages/nordsoftware/lumen-file-manager)[![License](https://camo.githubusercontent.com/7013272bd27ece47364536a221edb554cd69683b68a46fc0ee96881174c4214c/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d626c75652e737667)](LICENSE)

File manager module for the [Lumen PHP framework](http://lumen.laravel.com/).

**Please note that this module is still under active development.**

**NOTE**: Branch 5.1 is for using Lumen Framework 5.1 and 5.2. Only bug fixes for 1.1.X should be tagged here.

Requirements
------------

[](#requirements)

- PHP 5.6 or newer
- [Composer](http://getcomposer.org)

Usage
-----

[](#usage)

### Installation

[](#installation)

Run the following command to install the package through Composer:

```
composer require nordsoftware/lumen-file-manager
```

### Bootstrapping

[](#bootstrapping)

**Please note that we only support Doctrine for now, but we plan to add Eloquent support soon.**

Add the following lines to `bootstrap/app.php`:

```
$app->register('Nord\Lumen\FileManager\Doctrine\ORM\DoctrineServiceProvider'); // For ORM
// $app->register('Nord\Lumen\FileManager\Doctrine\ODM\DoctrineServiceProvider'); // For ODM
$app->register('Nord\Lumen\FileManager\FileManagerServiceProvider');
```

Add `base_path('vendor/nordsoftware/lumen-file-manager/src/Doctrine/ORM/Resources')` to your Doctrine mapping paths.

For ODM, add `base_path('vendor/nordsoftware/lumen-file-manager/src/Doctrine/ODM/Resources')`.

You can now use the `FileManager` facade or inject the `Nord\Lumen\FileManager\Contracts\FileManager` where needed.

### Example

[](#example)

Below is an example of how to use this module to save a file from the request and return a JSON response with the saved file's ID and URL.

```
public function uploadFile(Request $request, FileManager $fileManager)
{
    $file = $fileManager->saveFile($request->file('upload'));

    return Response::json([
        'id' => $file->getId(),
        'url' => $fileManager->getFileUrl($file),
    ]);
}
```

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

[](#contributing)

Please read the [guidelines](.github/CONTRIBUTING.md).

License
-------

[](#license)

MIT. See [LICENSE](LICENSE).

###  Health Score

36

—

LowBetter than 82% of packages

Maintenance19

Infrequent updates — may be unmaintained

Popularity26

Limited adoption so far

Community20

Small or concentrated contributor base

Maturity69

Established project with proven stability

 Bus Factor2

2 contributors hold 50%+ of commits

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

Recently: every ~68 days

Total

29

Last Release

3038d ago

Major Versions

0.9.3 → 1.0.02015-12-04

1.1.4 → 5.1.x-dev2017-04-24

PHP version history (2 changes)0.1.0PHP &gt;=5.5.9

2.0.0PHP &gt;=5.6

### Community

Maintainers

![](https://www.gravatar.com/avatar/ab3becb3323ceb956c661f3e6ef4312dcd00ec4ba03d1bba5fcef793f5c4286d?d=identicon)[crisu83](/maintainers/crisu83)

![](https://www.gravatar.com/avatar/2f766f3d06300e4e58806cac328ec6774408e2782497f3624f6112e0838bd057?d=identicon)[soderluk](/maintainers/soderluk)

![](https://www.gravatar.com/avatar/0946a262e18034427b1a75b8f2b9edc25395f33e5f514c616de79c69312e2b92?d=identicon)[kryysler](/maintainers/kryysler)

---

Top Contributors

[![cniska](https://avatars.githubusercontent.com/u/1044868?v=4)](https://github.com/cniska "cniska (39 commits)")[![crisu83](https://avatars.githubusercontent.com/u/1044868?v=4)](https://github.com/crisu83 "crisu83 (39 commits)")[![hugovk](https://avatars.githubusercontent.com/u/1324225?v=4)](https://github.com/hugovk "hugovk (12 commits)")[![Jalle19](https://avatars.githubusercontent.com/u/1106133?v=4)](https://github.com/Jalle19 "Jalle19 (1 commits)")[![soderluk](https://avatars.githubusercontent.com/u/6086071?v=4)](https://github.com/soderluk "soderluk (1 commits)")

---

Tags

filefileslumenlumen-php-frameworkphplaravels3lumenfilemanageruploadcloudinary

### Embed Badge

![Health badge](/badges/nordsoftware-lumen-file-manager/health.svg)

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

###  Alternatives

[itskodinger/midia

Simple Media manager for your Laravel project

1415.8k](/packages/itskodinger-midia)

PHPackages © 2026

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