config-transformer
config-transformer copied to clipboard
Convert Symfony YAML configs to PHP format
Hello, first thank you for such tool :) One question after checking the diff: what do you think of converting such config as well to using the full class path...
I'm using the config transformer to provide all Yaml based config as PHP Based config. The following project using a enum: https://github.com/symfony/recipes-contrib/blob/b9d7fb6be96bde2225c51e3cdab23f5fa6c2ca10/datana-gmbh/logz-io-handler/1.7/config/packages/datana_logz_io_handler.yaml#L9 The config transformer seemst to validate if that...
Fixture file for #58
Symfony 4.4 Hi! I just used this package on one of our projects and it worked great except for the **routes.yaml** file (right under **config/**). The initial file looked like...
On my project some services are loaded in yaml like this : ```yaml services: _defaults: autowire: true autoconfigure: true App\Article\: resource: "%kernel.project_dir%/src/Article" ``` When we convert this file in php...