I have a bundle imported from packagist.org and located into vendor directory
This bundle has a services.yml configuration file with parameters
parameters:
myservice.class: ...
myservice.options:
MERCHANT_ID: '11223344556677'
ACCESS_KEY: YourAccesKey
...
I want to override just one parameter in my app/config/parameters.yml but it delete all myservice.options array
parameters:
myservice.options:
MERCHANT_ID: '99999999999999'
how to override just one parameter ?