1.0.2 • Published 7 months ago

@rokmohar/medusa-payment-manual v1.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
7 months ago

Manual payment for MedusaJS v2

Installation

Run the following command to install the plugin with npm:

npm install --save @rokmohar/medusa-payment-manual

Or with yarn:

yarn add @rokmohar/medusa-payment-manual

⚠️ MedusaJS v2.5.0 or newer

This plugin is only for MedusaJS v2.5.0 or newer.

If you are using MedusaJS v2.4.0 or older, please use the older version of this plugin.

Configuration

Add the plugin to your medusa-config.ts file:

import { loadEnv, defineConfig } from '@medusajs/framework/utils'

loadEnv(process.env.NODE_ENV || 'development', process.cwd())

module.exports = defineConfig({
  // ... other config
  modules: [
    // ... other modules
    {
      resolve: '@medusajs/medusa/payment',
      options: {
        providers: [
          // ... other providers
          {
            resolve: '@rokmohar/medusa-payment-manual',
            id: 'manual',
          },
        ],
      },
    },
  ],
})
1.0.2

7 months ago

1.0.1

10 months ago

0.1.4

11 months ago

0.1.3

12 months ago

0.1.2

12 months ago

0.1.1

12 months ago

0.1.0

12 months ago