aimeos/ai-payments

Payment extension for Aimeos e-commerce solutions

Installs: 47 494

Dependents: 0

Suggesters: 0

Security: 0

Stars: 19

Watchers: 3

Forks: 16

Type:aimeos-extension

2023.10.3 2024-03-21 09:09 UTC

This package is auto-updated.

Last update: 2024-03-21 09:36:37 UTC


README

Aimeos logo

Aimeos payment extension

Build Status Coverage Status Scrutinizer Code Quality License

Aimeos extension for additional payment methods and their service provider. Some of them may have beta quality and improvements or contributions are always welcome!

Tip: There's also commercial support available if you need help to get a specific provider working.

Table of contents

Installation

As every Aimeos extension, the easiest way is to install it via composer. If you don't have composer installed yet, you can execute this string on the command line to download it:

php -r "readfile('https://getcomposer.org/installer');" | php -- --filename=composer

Add the cache extension name to the "require" section of your composer.json file:

"require": [
    "aimeos/ai-payments": "dev-master",
    ...
],

You should use a stable release if you don't want to add code or improve the implementation. The available stable versions can be found on Packagist.

Afterwards you only need to execute the composer update command on the command line:

composer update

These commands will install the Aimeos extension into the extension directory and it will be available immediately.

Configuration

Payment options are configured via the shop administration interface in the "Service" tab and you can add as many payment options as you need to the list for each site. They will be shown on the payment page in the checkout process. In the detail view of a new payment option, you have to enter some values:

Aimeos payment detail view

Make sure you set the status to "enabled" and the type to "Payment". Use an unique code for the payment option, idealy it should be readable and consist only of characters a-z, 0-9 and a few special characters like "-", "_" or ".". The value for the field "Provider" must be the last part of the class name of the payment service provider. Each of the following sections will tell you how it must be named. The last input field influences the position of the payment option within the list of payment options and you should use zero for the top position and greater values for the next payment options.

In the right side of the panel you can add the configuration settings that are specifically required for each payment provider. The list of available settings for each payment provider can be found in the service documentation.

License

The Aimeos payments extension is licensed under the terms of the LGPLv3 Open Source license and is available for free.

Links