---
title: "Feature: #93112 - Allow glob patterns in yaml imports"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:feature-93112-1667904722"
source: "Changelog/12.1/Feature-93112-AllowGlobPatternsInYamlImports.rst"
modified: "2026-09-15T10:46:36+00:00"
---

# Feature: #93112 - Allow glob patterns in yaml imports

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

## Description

The TYPO3 `YamlFileLoader` (used, for example, when loading site configurations) does
now support importing files with glob patterns. This will simplify the configuration
and allow for more compact configuration files.

To enable globbing, set the option `glob: true` on the import level.

## Impact

You can now use `glob()` syntax when importing configuration files in YAML.

Example:

```yaml
imports:
  - { resource: "./**/*.yaml", glob: true }
  - { resource: "EXT:core/Tests/**/Configuration/**/SiteConfigs/*.yaml", glob: true }
```
