migrify / config-transformer
Convert Symfony YAML/XML format to PHP/YAML
Requires
- php: >=7.3
- ext-dom: *
- nette/neon: ^3.2
- nette/utils: ^3.0
- nikic/php-parser: ^4.10.4
- symfony/console: ^4.4|^5.1
- symfony/dependency-injection: ^5.1
- symfony/expression-language: ^4.4|^5.1
- symfony/http-kernel: ^4.4|^5.1
- symfony/yaml: ^4.4|^5.1
- symplify/php-config-printer: ^9.0.40
Requires (Dev)
- phpunit/phpunit: ^9.5
- symfony/framework-bundle: ^4.4|^5.1
- symplify/easy-testing: ^9.0.40
- dev-master
- 9.0.40
- 9.0.39
- 9.0.38
- 9.0.37
- 9.0.36
- 9.0.35
- 9.0.34
- 9.0.33
- 9.0.32
- 9.0.31
- 9.0.30
- 9.0.29
- 9.0.28
- 9.0.27
- 9.0.26
- 9.0.25
- 9.0.24
- 9.0.23
- 9.0.22
- 9.0.21
- 9.0.20
- 9.0.19
- 9.0.18
- 9.0.17
- 9.0.16
- 9.0.15
- 9.0.14
- 9.0.13
- 9.0.12
- 9.0.11
- 9.0.10
- 9.0.9
- 9.0.8
- 9.0.7
- 9.0.6
- 9.0.5
- 9.0.4
- 9.0.3
- 9.0.2
- 9.0.1
- 9.0.0
- 9.0.0-rc1
- 9.0.0-BETA9
- 9.0.0-BETA8
- 9.0.0-BETA7
- 9.0.0-BETA6
- 9.0.0-BETA5
- 9.0.0-BETA4
- 9.0.0-BETA3
- 9.0.0-BETA2
- 0.4.2
- 0.4.1
- 0.4.0
- 0.3.59
- 0.3.52
- 0.3.51
- 0.3.50
- 0.3.49
- 0.3.48
- 0.3.47
- 0.3.46
- 0.3.45
- 0.3.44
- 0.3.43
- 0.3.42
- 0.3.41
- 0.3.40
- 0.3.39
- 0.3.38
- 0.3.37
- 0.3.36
- 0.3.35
- 0.3.34
- 0.3.33
- v0.3.32
- v0.3.31
- v0.3.30
- v0.3.29
- v0.3.28
- v0.3.27
- v0.3.26
- v0.3.25
- v0.3.24
- v0.3.22
- v0.3.21
- v0.3.20
- v0.3.19
- v0.3.18
- v0.3.17
- v0.3.16
- v0.3.15
- v0.3.14
- v0.3.13
- v0.3.12
- v0.3.11
- v0.3.10
- v0.3.9
- v0.3.8
- v0.3.7
- v0.3.6
- v0.3.5
- v0.3.4
- v0.3.3
- v0.3.2
This package is auto-updated.
Last update: 2021-01-18 16:54:16 UTC
README
Convert Symfony Config Formats From XML/YAML to YAML/PHP
Install
composer require symplify/config-transformer --dev
What features do we have here?
Convert Config Formats From XML/YAML to YAML/PHP
Why? Because YAML beats XML and PHP beats YAML.
Do you need to convert 1 file to PHP? Just add its path as argument:
vendor/bin/config-transformer switch-format config/packages/ecs.yaml
The input file will be deleted automatically.
If you need more files or directories, --input-format
/-i
must be provided:
vendor/bin/config-transformer switch-format app/config --input-format xml --output-format yaml # or in short vendor/bin/config-transformer switch-format app/config -i xml -o yaml # to PHP? vendor/bin/config-transformer switch-format app/config -i xml -o php # you can omit the -o argument, as "php" is the default value vendor/bin/config-transformer switch-format app/config -i xml
You can also add --target-symfony-version
/-s
to specify, what Symfony features should be used (3.2 is used by default).
vendor/bin/config-transformer switch-format app/config -i yaml -o php -s 3.3
Note: Symfony YAML parse removes all comments, so be sure to go through files and add still-relevant comments manually.
Report Issues
In case you are experiencing a bug or want to request a new feature head over to the Symplify monorepo issue tracker
Contribute
The sources of this package are contained in the Symplify monorepo. We welcome contributions for this package on symplify/symplify.