replaceEnvVariables: to use "array_replace_recursive" instead of "array_merge_recursive"
Otherwise variables that exist in both arrays $_ENV and $_SERVER are merged into an array.
e.g.
$_ENV: DB_USER=app
$_SERVER: DB_USER=app
=>
DB_USER = [
app,
app
]
placeholderWrapper: makes the wrapper of placeholders configurable.
defaults to "%", but Showpare 6 utilizes ""
e.g.: `DB_USER__`
Adds 2 parameters to the SetEnvParametersTask:
replaceEnvVariables: to use "array_replace_recursive" instead of "array_merge_recursive" Otherwise variables that exist in both arrays $_ENV and $_SERVER are merged into an array. e.g. $_ENV: DB_USER=app $_SERVER: DB_USER=app => DB_USER = [ app, app ]
placeholderWrapper: makes the wrapper of placeholders configurable. defaults to "%", but Showpare 6 utilizes "" e.g.: `DB_USER__`
See: https://github.com/shopware/production/blob/6.1/.env.dist