PHPackages                             nordsoftware/lumen-image-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. [Image &amp; Media](/categories/media)
4. /
5. nordsoftware/lumen-image-manager

AbandonedArchivedLibrary[Image &amp; Media](/categories/media)

nordsoftware/lumen-image-manager
================================

Image manager module for the Lumen framework.

1.1.0(10y ago)216322[1 issues](https://github.com/nordsoftware/lumen-image-manager/issues)MITPHPPHP &gt;=5.5.9

Since Jul 5Pushed 8y ago1 watchersCompare

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

READMEChangelogDependencies (3)Versions (17)Used By (0)

Lumen Image Manager
===================

[](#lumen-image-manager)

[![Code Climate](https://camo.githubusercontent.com/798d815d9f37f7f222711e3aefac5595107f00c41a62dde05d3b17feee830474/68747470733a2f2f636f6465636c696d6174652e636f6d2f6769746875622f6e6f7264736f6674776172652f6c756d656e2d696d6167652d6d616e616765722f6261646765732f6770612e737667)](https://codeclimate.com/github/nordsoftware/lumen-image-manager)[![Scrutinizer Code Quality](https://camo.githubusercontent.com/9b18cb1e611ffa74c3073628608460947d4d44aea60810fa266ee92c002961f4/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f6e6f7264736f6674776172652f6c756d656e2d696d6167652d6d616e616765722f6261646765732f7175616c6974792d73636f72652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/nordsoftware/lumen-image-manager/?branch=master)[![StyleCI](https://camo.githubusercontent.com/5f5c3b6aa81d82c224c8515f9cb087aa72f785f46a094246506996c21676eee5/68747470733a2f2f7374796c6563692e696f2f7265706f732f33383537323438382f736869656c643f7374796c653d666c6174)](https://styleci.io/repos/38572488)[![Latest Stable Version](https://camo.githubusercontent.com/94f72d1c9820d0c1a206aec00e4b9dbf3614307392f7d6582f70496c3bb9a70a/68747470733a2f2f706f7365722e707567782e6f72672f6e6f7264736f6674776172652f6c756d656e2d696d6167652d6d616e616765722f76657273696f6e)](https://packagist.org/packages/nordsoftware/lumen-image-manager)[![Total Downloads](https://camo.githubusercontent.com/d07414a5338cae24ee5c6a813f1c50c79d3031fe9494a58e3657dc4e03f62e88/68747470733a2f2f706f7365722e707567782e6f72672f6e6f7264736f6674776172652f6c756d656e2d696d6167652d6d616e616765722f646f776e6c6f616473)](https://packagist.org/packages/nordsoftware/lumen-image-manager)[![License](https://camo.githubusercontent.com/7013272bd27ece47364536a221edb554cd69683b68a46fc0ee96881174c4214c/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d626c75652e737667)](LICENSE)

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

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

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

[](#requirements)

- PHP 5.5.9 or newer
- [Composer](http://getcomposer.org)
- [FileManager](http://github.com/nordsoftware/lumen-file-manager)

Usage
-----

[](#usage)

### Installation

[](#installation)

Run the following command to install the package through Composer:

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

### Bootstrapping

[](#bootstrapping)

**Please note that we only support Cloudinary for now.**

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

```
$app->register('Nord\Lumen\Cloudinary\CloudinaryServiceProvider');
```

```
$app->register('Nord\Lumen\ImageManager\ImageManagerServiceProvider');
```

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

### Example

[](#example)

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

```
public function uploadImage(Request $request, FileManager $fileManager, ImageManager $imageManager)
{
    // Save the image directly to Cloudinary
    $file = $fileManager->saveFile($request->file('upload'), ['disk' => 'cloudinary']);

    return Response::json([
        'id'  => $file->getId(),
        'url' => $imageManager->getImageUrl($file, ['transformation' => 'small'])
    ]);
}
```

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

[](#contributing)

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

License
-------

[](#license)

See [LICENSE](LICENSE).

###  Health Score

33

—

LowBetter than 75% of packages

Maintenance19

Infrequent updates — may be unmaintained

Popularity23

Limited adoption so far

Community12

Small or concentrated contributor base

Maturity66

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

Recently: every ~59 days

Total

15

Last Release

3728d ago

Major Versions

0.5.1 → 1.0.12015-12-04

### Community

Maintainers

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

---

Top Contributors

[![cniska](https://avatars.githubusercontent.com/u/1044868?v=4)](https://github.com/cniska "cniska (31 commits)")[![crisu83](https://avatars.githubusercontent.com/u/1044868?v=4)](https://github.com/crisu83 "crisu83 (31 commits)")[![hugovk](https://avatars.githubusercontent.com/u/1324225?v=4)](https://github.com/hugovk "hugovk (11 commits)")

---

Tags

imageimageslumen-php-frameworkphplaravelimagelumenmanagercloudinary

### Embed Badge

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

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

###  Alternatives

[tomatophp/filament-media-manager

Manage your media files using spatie media library with easy to use GUI for FilamentPHP

14543.9k3](/packages/tomatophp-filament-media-manager)

PHPackages © 2026

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