---
title: "Feature: #108846 - Console command to inspect global ViewHelper namespaces"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:feature-108846-1770196894"
source: "Changelog/14.2/Feature-108846-ConsoleCommandToInspectGlobalViewHelperNamespaces.rst"
typo3-version: "14.2"
typo3-major: 14
type: "feature"
issue: 108846
forge: "https://forge.typo3.org/issues/108846"
tags: ["CLI", "Fluid", "ext:fluid"]
rendered: "2026-09-20T18:31:11+00:00"
---

# Feature: #108846 - Console command to inspect global ViewHelper namespaces {#feature-108846-1770196894}

See [forge#108846](https://forge.typo3.org/issues/108846)

## Description {#description}

The new console command `typo3 fluid:namespaces` has been introduced. It
lists all the available global ViewHelper namespaces in the current project and
can be used to verify the current configuration. The `--json` option
can be used to access the information in a machine-readable way.

Usage:

```bash
vendor/bin/typo3 fluid:namespaces
```

Example output:

```
+--------+------------------------------+
| Alias  | Namespace(s)                 |
+--------+------------------------------+
| core   | TYPO3\CMS\Core\ViewHelpers   |
+--------+------------------------------+
| formvh | TYPO3\CMS\Form\ViewHelpers   |
+--------+------------------------------+
| f      | TYPO3Fluid\Fluid\ViewHelpers |
|        | TYPO3\CMS\Fluid\ViewHelpers  |
+--------+------------------------------+
```

The same information is available in the
**System > Configuration** module in the TYPO3 backend.

## Impact {#impact}

The new console command allows developers and integrators to inspect
global ViewHelper namespaces in the current project.
