Amwal Tech logoDocs

Magento 2 Installation Guide

Install the official Amwal Payments module on Adobe Commerce (Magento 2) to accept 0% bank installments, instant Apple Pay, and biometric checkout.

Rendering diagram...

1. Installation Methods

Run the composer command from your Magento 2 root directory:

composer require amwal/payments

DDEV & Docker Users

If you run Magento inside a DDEV or Docker environment, prefix the command with your container CLI (e.g. ddev composer require amwal/payments).

  1. Download the latest release .zip archive from the official Amwal Magento GitHub Releases.
  2. Extract the archive contents.
  3. Upload the files to your Magento installation directory at:
    app/code/Amwal/Payments/

Upload module files to app/code/Amwal/Payments


2. Post-Installation Setup & CLI Commands

After downloading or extracting the package, run the following sequence of commands in your Magento root directory to register and compile the module:

# 1. Enable the Amwal Payments module
bin/magento module:enable Amwal_Payments

# 2. Apply database migrations and schemas
bin/magento setup:upgrade

# 3. Compile dependency injection
bin/magento setup:di:compile

# 4. Deploy static storefront assets
bin/magento setup:static-content:deploy -f

# 5. Flush the cache
bin/magento cache:flush

3. Choose Integration Type

Once enabled, navigate to Stores → Configuration → Sales → Payment Methods → Amwal in your Magento Admin Panel:

Amwal Lite Configuration

  • Lite Setup (Quick): Restricts payment buttons strictly to the standard checkout page.
  • Pro Setup (Recommended): Enables fast 1-tap checkout buttons on Product Detail Pages (PDP), Category Listings (PLP), and standard checkout.

Next Steps

On this page