Globbing for yaml configuration files
Currently we just allow "globbing" in the way you can provide a wildcard *
.
It would be much nicer to provide globbing also recursive, so it's possible to have the following structure and globbing:
src/Standards/Typo3Update/Configuration
└── Removed
├── Constants
│ ├── 7.0.yaml
│ ├── 7.4.yaml
│ ├── 7.5.yaml
│ └── 7.6.yaml
├── Extensions
│ └── ExtName
│ ├── Constants
│ │ └── 5.6.4.yaml
│ └── Functions
│ └── 5.6.2.yaml
└── Functions
├── 7.0.yaml
├── 7.1.yaml
├── 7.2.yaml
├── 7.3.yaml
├── 7.4.yaml
└── 7.5.yaml
src/Standards/Typo3Update/Configuration/**/Constants/**/*.yaml
src/Standards/Typo3Update/Configuration/**/Functions/**/*.yaml
Perhaps that's possible with Symfony Finder: https://symfony.com/doc/current/components/finder.html Otherwise we should check other packages.