Download the PHP package monei/monei-php-sdk without Composer

On this page you can find all versions of the php package monei/monei-php-sdk. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package monei-php-sdk

MONEI PHP SDK

Latest Stable Version Total Downloads License PHP Version

The MONEI PHP SDK provides convenient access to the MONEI API from applications written in server-side PHP.

For collecting customer and payment information in the browser, use monei.js.

Table of Contents

Requirements

Installation

Install the package using Composer:

Then run composer install

Basic Usage

API Keys

The MONEI API uses API keys for authentication. You can obtain and manage your API keys in the MONEI Dashboard.

Types of API Keys

MONEI provides two types of API keys:

Each API key has a distinct prefix that indicates its environment:

By checking the prefix of an API key, you can quickly determine which environment you're working in. This is especially useful when you're managing multiple projects or environments.

API Key Security

Your API keys carry significant privileges, so be sure to keep them secure:

Test Mode

To test your integration with MONEI, you need to switch to test mode using the toggle in the header of your MONEI Dashboard. When in test mode:

  1. Generate your test API key in MONEI Dashboard → Settings → API Access
  2. Configure your payment methods in MONEI Dashboard → Settings → Payment Methods

Important: Account ID and API key generated in test mode are different from those in live (production) mode and can only be used for testing purposes.

When using test mode, you can simulate various payment scenarios using test card numbers, Bizum phone numbers, and PayPal accounts provided in the MONEI Testing documentation.

Basic Client Usage

Payment Operations

Creating a Payment

Create a payment with customer information:

Retrieving a Payment

Retrieve an existing payment by ID:

Refunding a Payment

Process a full or partial refund:

Integration Methods

Using the Prebuilt Payment Page

MONEI Hosted Payment Page is the simplest way to securely collect payments from your customers without building your own payment form.

Features

You can customize the appearance in your MONEI Dashboard → Settings → Branding.

Integration Flow

  1. Create a payment on your server

  2. Redirect the customer to the payment page

After creating a payment, you'll receive a response with a nextAction.redirectUrl. Redirect your customer to this URL to show them the MONEI Hosted payment page.

  1. Customer completes the payment

The customer enters their payment information and completes any required verification steps (like 3D Secure).

  1. Customer is redirected back to your website
  1. Receive asynchronous notification

MONEI sends an HTTP POST request to your callback_url with the payment result. This ensures you receive the payment status even if the customer closes their browser during the redirect.

For more information about the hosted payment page, visit the MONEI Hosted Payment Page documentation.

Webhooks

Webhooks can be configured in the MONEI Dashboard → Settings → Webhooks.

Signature Verification

When receiving webhooks from MONEI, you should verify the signature to ensure the request is authentic:

Handling Payment Callbacks

MONEI sends an HTTP POST request to your callback_url with the payment result. This ensures you receive the payment status even if the customer closes their browser during the redirect.

Example of handling the callback in a PHP script:

Important Notes About Webhooks

  1. Always verify the signature to ensure the webhook is coming from MONEI
  2. Use the raw request body for signature verification
  3. Return a 2xx status code to acknowledge receipt of the webhook
  4. Process webhooks asynchronously for time-consuming operations
  5. Implement idempotency to handle duplicate webhook events

MONEI Connect for Partners

If you're a partner or platform integrating with MONEI, you can act on behalf of your merchants by providing their Account ID. This is part of MONEI Connect, which allows platforms to manage multiple merchant accounts.

Important: When using Account ID functionality, you must:

  1. Use a partner API key (not a regular merchant API key)
  2. Provide a custom User-Agent to identify your platform

For more information about MONEI Connect and becoming a partner, visit the MONEI Connect documentation.

Account ID

Setting Account ID after initialization

Custom User-Agent

When integrating as a MONEI Connect partner, your User-Agent should follow this format:

For example: MONEI/YourPlatform/1.0.0

This format helps MONEI identify your platform in API requests and is required when using the Partner API Key.

Examples with Proper User-Agent Format

Note: When using Account ID, you must set a custom User-Agent before making any API calls. The User-Agent is validated when making API requests.

Important: To use this feature, you need to be registered as a MONEI partner and use your partner API key. Please contact [email protected] to register as a partner.

Managing Multiple Merchant Accounts

Development

Building the SDK

The SDK is built using OpenAPI Generator. To build the SDK from the OpenAPI specification:

Tests

To run the unit tests:

Code Style

This project follows the PSR-12 coding standard. We use PHP CS Fixer to enforce the coding standards.

To check the code style:

To automatically fix code style issues:

Documentation

For the full documentation, check our Documentation portal.

For a comprehensive overview of all MONEI features and integration options, visit our main documentation portal. There you can explore guides for:


All versions of monei-php-sdk with dependencies

PHP Build Version
Package Version
Requires php Version >=7.4
ext-curl Version *
ext-json Version *
ext-mbstring Version *
guzzlehttp/guzzle Version ^7.8.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package monei/monei-php-sdk contains the following files

Loading the files please wait ....