kleisli/neos-domaindimensionresolver

There is no license information available for the latest version (1.0.0) of this package.

A package for Neos CMS that allows content dimension resolution by domain.

Installs: 0

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 0

Open Issues: 0

Type:neos-package

pkg:composer/kleisli/neos-domaindimensionresolver

1.0.0 2025-11-16 19:06 UTC

This package is auto-updated.

Last update: 2025-11-16 19:10:43 UTC


README

A package for Neos CMS that allows content dimension resolution by domain.

This package allows to serve different dimensions on different domains. e.g. instead of meine-website.ch/de and meine-seite.ch/fr you can have meine-website.ch for the German content and mon-site-web.ch for the French content.

Installation

composer require kleisli/neos-domaindimensionresolver

Configuration

Example Settings.Dimensions.yaml

Neos:
  Neos:
    sites:
      '*':
        contentDimensions:
          defaultDimensionSpacePoint:
            language: de
          resolver:
            factoryClassName: Kleisli\Neos\DomainDimensionResolver\DomainResolverFactory
            options:
              dimensionIdentifier: language
              dimensionValueMapping:
                de: 'meine-website.ch'
                fr: 'mon-site-web.ch'
                it: 'il-mio-sito-web.ch'
                rm: 'mia-pagina-dinternet.ch'