becklyn / yaml-parameters
Composer script handling the dist parameters file.
1.0.1
2018-09-04 15:19 UTC
Requires
- php: ^7.1
- symfony/yaml: ^3.0 || ^4.0
Requires (Dev)
- composer/composer: ^1.0
- symfony/filesystem: ^4.0
- symfony/phpunit-bridge: ^4.0
This package is auto-updated.
Last update: 2026-03-07 08:25:29 UTC
README
Automates the installation workflow for parameters.yaml files.
Installation and Usage
Add the following code to your composer.json:
{
"require": {
"becklyn/yaml-parameters-handler": "^1.0"
},
"scripts": {
"yaml-parameters": [
"Becklyn\\YamlParameters\\Script::handle"
],
"post-install-cmd": [
"@yaml-parameters"
],
"post-update-cmd": [
"@yaml-parameters"
]
},
"extra": {
"parameters": "config/parameters.yaml"
}
}
The "extra"-parameter is optional, it defaults to config/parameters.yaml.
The .dist file must be named like the target file, with additional .dist infix before the extension (the default is config/parameters.yaml -> config/parameters.dist.yaml)
- All obsolete config will be removed without warning.
- The merging of
.distparameters only works for scalars and arrays.