I'm new to Payum and I am trying to create a new payment gateway. However I can't figure out how the config values relate to the files I've created (Actions/Factory etc).
Here's what I have so far;
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 don't get what I am supposed to put into xxx and yyy. No matter what values I try I still don't get it. I keep getting the following error.
InvalidConfigurationException: Unrecognized options "yyy" under "payum.contexts.xxx"
Can anyone tell me what those values are supposed to be and how the values I set are related to the gateway and where there are needed so the config actually matches up to something in the gateway code?
Thanks in advance :)