PHPackages                             noerd/media - 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. noerd/media

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

noerd/media
===========

Media module for noerd platform

v0.1.3(1mo ago)0119↑56.3%proprietaryPHP

Since Jun 2Pushed 6d agoCompare

[ Source](https://github.com/noerd-dev/media)[ Packagist](https://packagist.org/packages/noerd/media)[ RSS](/packages/noerd-media/feed)WikiDiscussions main Synced 1w ago

READMEChangelog (1)Dependencies (6)Versions (4)Used By (0)

noerd/media
===========

[](#noerdmedia)

[![Total Downloads](https://camo.githubusercontent.com/d24273c3d670128f010f9b5f3110491675a228936664fe976d29881be9d8b6b2/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6e6f6572642f6d656469612e737667)](https://packagist.org/packages/noerd/media)[![Latest Stable Version](https://camo.githubusercontent.com/47f021a018060079a1ea1a7ce0acfd735881622bfff3035211300593f8bf38ff/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6e6f6572642f6d656469612e737667)](https://packagist.org/packages/noerd/media)

**A media library for [noerd](https://noerd.dev) — upload, organize, and serve files across your Laravel app.**Folders, tags, automatic image &amp; PDF thumbnails, and OCR text extraction — multi-tenant out of the box.

For full documentation, visit [noerd.dev](https://noerd.dev).

Key Features
------------

[](#key-features)

- **Media Library** – Upload and manage files in a YAML-configured, searchable list view
- **Folders &amp; Tags** – Organize media into hierarchical folders and tag them for fast retrieval
- **Thumbnails &amp; Previews** – Automatic preview generation for images and PDFs (Imagick + Intervention Image)
- **OCR** – Extract text from uploaded documents for full-text search
- **MediaResolver** – A shared contract (`MediaResolverContract`) other modules use to store uploads and resolve preview URLs without depending on Media directly
- **Multi-Tenant** – Every file is scoped to its tenant, on a dedicated `media` storage disk
- **Custom Attributes** – Attach project-specific fields via the `custom_attributes` JSON column — no module changes required

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

[](#requirements)

- A working [noerd/noerd](https://github.com/noerd-dev/noerd) installation
- PHP 8.4+ with the `imagick` extension
- Laravel 12+
- Livewire 4+

Quickstart
----------

[](#quickstart)

```
# 1. Install the package (noerd/noerd is pulled in automatically)
composer require noerd/media

# 2. Install media content, navigation, and the storage disk
php artisan noerd:install-media
```

`noerd:install-media` copies the YAML configs, registers the **Media** app, adds a dedicated `media` disk to `config/filesystems.php`, and runs the module migrations.

> **Prerequisite:** the noerd platform must already be installed (`composer require noerd/noerd && php artisan noerd:install`). The media package depends on it.

Configuration
-------------

[](#configuration)

Files are stored on a dedicated disk, configurable via the `MEDIA_DISK` environment variable (defaults to the `media` disk added during installation):

```
MEDIA_DISK=media
```

Artisan Commands
----------------

[](#artisan-commands)

```
php artisan noerd:install-media          # Install configs, navigation, storage disk and migrations
php artisan noerd:update-media           # Update the published YAML configuration files
php artisan media:regenerate-thumbnails  # Regenerate thumbnails for existing media
```

Auto installed packages
-----------------------

[](#auto-installed-packages)

- `intervention/image` — image manipulation and thumbnail generation
- `barryvdh/laravel-dompdf` — PDF rendering
- `ext-imagick` — image and PDF preview rasterization

Installation as Submodule to contribute
---------------------------------------

[](#installation-as-submodule-to-contribute)

The submodule install is **optional** — only needed if you want to contribute to the development of Media. Install it as a git submodule instead:

```
git submodule add git@github.com:noerd-dev/media.git app-modules/media
```

Then add a path repository and the package to your `composer.json`:

```
"repositories": [
    {
        "type": "path",
        "url": "app-modules/media",
        "options": {
            "symlink": true
        }
    }
],
"require": {
    "noerd/media": "*"
}
```

Then run:

```
composer update noerd/media
php artisan noerd:install-media
```

This way, you can make changes directly in `app-modules/media` and push them back to the Media repository.

###  Health Score

37

—

LowBetter than 81% of packages

Maintenance96

Actively maintained with recent releases

Popularity14

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity26

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.

###  Release Activity

Cadence

Every ~8 days

Total

3

Last Release

35d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/8ede41d0ea3a95909f1e9a22b682a3b598e8b5c4244c0c1258e5a4ec238524bf?d=identicon)[noerd](/maintainers/noerd)

---

Top Contributors

[![johbrock](https://avatars.githubusercontent.com/u/19673317?v=4)](https://github.com/johbrock "johbrock (75 commits)")

### Embed Badge

![Health badge](/badges/noerd-media/health.svg)

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

###  Alternatives

[unopim/unopim

UnoPim Laravel PIM

10.5k2.4k](/packages/unopim-unopim)[bagisto/bagisto

Bagisto Laravel E-Commerce

27.6k172.1k9](/packages/bagisto-bagisto)[league/glide

Wonderfully easy on-demand image manipulation library with an HTTP based API.

2.6k53.3M149](/packages/league-glide)[intervention/image-laravel

Laravel Integration of Intervention Image

1588.9M201](/packages/intervention-image-laravel)[laravel-at/laravel-image-sanitize

A small but handy package to prevent malicious code execution coming into your application through uploaded image files.

33866.8k](/packages/laravel-at-laravel-image-sanitize)[october/rain

October Rain Library

1601.7M87](/packages/october-rain)

PHPackages © 2026

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