Payment method module configuration
For the sake of compatibility, upgradability and easy maintenance, do not edit the default Magento code; add your customizations in a separate module.
You can use the sample Magento_SamplePaymentGateway module files as basis for your custom module structure and files.
Specify your module dependencies
Your custom payment integration module must have at least the following dependencies:
- Magento_Sales module: to be able to get order details
- Magento_Payment module: to use the Magento payment provider gateway infrastructure
- Magento_Checkout module: to be able to add the new payment method to checkout. If you do not plan to use it on the storefront checkout, this dependency is not required.
Specify these dependencies in your composer.json
and module.xml
files.
composer.json
In your %Vendor_Module%/composer.json
file, specify the dependencies like in the following example:
For details about composer.json see The composer.json file topic.
module.xml
Add the same dependencies in %Vendor_Module%/etc/module.xml
like in the following example:
Your payment method implementation might require adding more dependencies.