moipayway / mpw-php
The library simplifies interaction with Moipayway APIs in your PHP applications. It streamlines the process of integration, eliminating the need to deal with intricate details, and facilitates rapid API calls.
Requires
- guzzlehttp/guzzle: ^7.8
Requires (Dev)
- phpunit/phpunit: ^9.6
This package is auto-updated.
Last update: 2025-03-26 02:14:06 UTC
README
Introduction
The MoiPayWay PHP Library simplifies interaction with Moipayway APIs in your PHP applications. It streamlines the process of integration, eliminating the need to deal with intricate details, and facilitates rapid API calls. Key features include:
- Wallets: creating and managing wallets (fiat, crypto).
- Making transfers, single/bulk. Fiat (NGN, GBP, EUR, USD) & Crypto.
- Manage virtual accounts.
- Tokens: create and manage token, such as; NFT, fungible token, stable coins, storage token, etc.
- Verification: running identity checks, credit checks, etc.
- AI: verify document image (drivers license NIN, BVN, etc), Face Comparison.
- Lookups: Document validity check, CAC, etc.
Table of Content
- Requirements
- Installation
- Initialization
- Authenticate
- Sending requests with payload
- Error handling
- More usage documentation
- Testing
- License
Requirements
- PHP 7.4 or higher.
Installation
composer require moipayway/mpw-php
Initialization
use MPW\MoiPayWay; $mpw = new MoiPayWay("secret_token"); try { var_dump($mpw->misc->countries()); } catch (Exception $e) { echo $e->getMessage(); }
Authenticate
Refer to the documentation linked below to understand how to generate secret tokens for authenticating the Moipayway SDK.
Sending requests with payload
Some endpoint requires additional data to be included in the request payload. Below is an example demonstrating sending requests with payload:
use MPW\MoiPayWay; $mpw = new MoiPayWay("secret_token"); try { $response = $mpw->wallet->createFiat([ 'code' => '***', 'meta' => [ 'name' => '***', 'user_id' => '***' ] ]); var_dump($response); } catch (Exception $e) { echo $e->getMessage(); }
Error handling
You can catch request errors by wrapping the method in a try / catch block.
use MPW\MoiPayWay; $mpw = new MoiPayWay("invalid_api_secret_key"); try { $response = $mpw->token->multi->mint($payload); var_dump($response); } catch (Exception $e) { echo $e->getMessage(); }
Response :
Error minting multi token
More usage documentation
Testing
./vendor/bin/phpunit