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

ActiveNeos-package

wegmeister/media-properties
===========================

1.0.0(9mo ago)030GPL-3.0-or-laterPHP

Since Jul 16Pushed 9mo agoCompare

[ Source](https://github.com/die-wegmeister/Wegmeister.MediaProperties)[ Packagist](https://packagist.org/packages/wegmeister/media-properties)[ RSS](/packages/wegmeister-media-properties/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (1)Dependencies (1)Versions (2)Used By (0)

Wegmeister.MediaProperties
==========================

[](#wegmeistermediaproperties)

This package provides additional media properties for Neos CMS, that allow you to choose tags and asset collections from the Media package.

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

[](#installation)

From within your Site package, run:

```
composer require --no-update wegmeister/media-properties
```

Then run the following command in your project root:

```
composer update
```

Usage
-----

[](#usage)

This package provides presets and data types for tags and asset collections. To use them, add the following lines to your `NodeTypes.yaml` file:

Multiple Tags / Asset collections```
'Vendor.Package:NodeType':
  properties:
    ##
    # Tags
    ##
    tags:
      # either use type or the options preset, not both
      type: array
      # options:
      #   preset: tags
      ui:
        label: Tags
        inspector:
          group: default
          # Optionally, only show tags that are linked to one of the given asset collections
          editorOptions:
            dataSourceAdditionalData:
              assetCollections:
                - 'Title of Asset collection'

    ##
    # Asset Collections
    ##
    assetCollections:
      # either use type or the options preset, not both
      type: array
      # options:
      #   preset: assetCollections
      ui:
        label: Asset Collections
        inspector:
          group: default
```

Single Tag / Asset collection```
'Vendor.Package:NodeType':
  properties:
    ##
    # Single Tag
    ##
    tag:
      # either use type or the options preset, not both
      type: Neos\Media\Domain\Model\Tag
      # options:
      #   preset: tags
      ui:
        label: Tag
        inspector:
          group: default
          # Optionally, only show tags that are linked to one of the given asset collections
          editorOptions:
            dataSourceAdditionalData:
              assetCollections:
                - 'Title of Asset collection'
    ##
    # Single Asset Collection
    ##
    assetCollection:
      # either use type or the options preset, not both
      type: Neos\Media\Domain\Model\AssetCollection
      # options:
      #   preset: assetCollections
      ui:
        label: Asset Collection
        inspector:
          group: default
```

Then use the property in your fusion files:

```
prototype(Vendor.Package:NodeType) < prototype(Neos.Neos:ContentComponent) {
    # Multiple Tags / Asset Collections
    tags = ${q(node).property('tags')}
    assetCollections = ${q(node).property('assetCollections')}

    # Single Tag / Asset Collection
    tag = ${q(node).property('tag')}
    assetCollection = ${q(node).property('assetCollection')}

    renderer = afx`

            Tags

                {tag.label}

                    Asset Collection: {assetCollection.title}

            Single Tag
            {props.tag.label}

            Single Asset Collection
            {props.assetCollection.title}

    `
}

```

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance55

Moderate activity, may be stable

Popularity8

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity36

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

Unknown

Total

1

Last Release

298d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/028c454abbb42f4b6e8f9d37a12857f56a8eda4be858b85185bd57a6ba512540?d=identicon)[wegmeister](/maintainers/wegmeister)

---

Top Contributors

[![Benjamin-K](https://avatars.githubusercontent.com/u/3098031?v=4)](https://github.com/Benjamin-K "Benjamin-K (6 commits)")

### Embed Badge

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

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

###  Alternatives

[neos/neos-ui

Neos CMS UI written in React

2661.0M104](/packages/neos-neos-ui)[neos/form-builder

Flow Form Framework integration into Neos CMS

19347.1k18](/packages/neos-form-builder)[neos/demo

Site package for the Neos Demo Site

18181.0k6](/packages/neos-demo)[flowpack/media-ui

This module allows managing media assets including pictures, videos, audio and documents.

2184.5k2](/packages/flowpack-media-ui)[kaufmanndigital/gdpr-cookieconsent

A ready-to-run package, that integrates an advanced cookie consent banner into your Neos CMS site.

2540.7k](/packages/kaufmanndigital-gdpr-cookieconsent)[flowpack/neos-matomo

Track visits of your Neos site with the Matomo Open Analytics Platform!

2337.6k](/packages/flowpack-neos-matomo)

PHPackages © 2026

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