data-src=/includes/braintree-note.md

Payment method module configuration

For the sake of compatibility, upgradability and easy maintenance, do not edit the default Adobe Commerce code; add your customizations in a separate module.

data-variant=info
data-slots=text
You can use the sample Magento_SamplePaymentGateway module files as the basis for your custom module structure and files. However, be aware that this code is NOT supported.

Specify your module dependencies

Your custom payment integration module must have at least the following dependencies:

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:

{
    ...
    "require": {
        ...
        "magento/module-payment": "100.1.*",
        "magento/module-checkout": "100.1.*",
        "magento/module-sales": "100.1.*",
        ...
    },
    ...

}

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:

<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
    <module name="Vendor_Module" setup_version="2.0.0">
        <sequence>
            ...
            <module name="Magento_Sales"/>
            <module name="Magento_Payment"/>
            <module name="Magento_Checkout"/>
            ...
        </sequence>
    </module>
</config>

Your payment method implementation might require adding more dependencies.