I am new to Payum and I am trying to create a new payment gateway. However, I cannot understand how the configuration values relate to the files I created (Actions / Factory, etc.).
That's what I still have
payum:
security:
token_storage:
Path\To\PaymentSecurityToken:
doctrine:
driver: orm
contexts:
xxx:
yyyy:
api:
options:
sandbox: true
storages:
Path\To\Payment:
doctrine:
driver: orm
I do not get what I have to put in xxx and yyy . No matter what values I try, I still do not understand. I keep getting the following error.
InvalidConfigurationException: Unrecognized options "yyy" under "payum.contexts.xxx"
Can someone tell me what these values should be and how the values I set are related to the gateway, and where is it necessary that the configuration actually matches something in the gateway code?
Thanks in advance :)