adyen/module-payment 2.0.1

Official Magento2 Plugin to connect to Payment Service Provider Adyen.

Type

magento2-module

License

OSL-3.0, AFL-3.0

Requires
Requires (dev)

None

Suggests

None

Provides

None

Conflicts

None

Replaces

None

Adyen_Magento2

Adyen Payment plugin for Magento2

Install with Composer

composer require adyen/module-payment

Manual

https://docs.adyen.com/manuals/magento/magento2-integration

Setup Cron

Make sure that your magento cron is running every minute. We are using a cronjob to process the notifications. The cronjob will be executed every minute. It only executes the notifications that have been received at least 2 minutes ago. We have built in this 2 minutes so we are sure Magento has created the order and all save after events are executed. A handy tool to get insight into your cronjobs is AOE scheduler. You can download this tool through Magento Connect or GitHub

Support

You can create issues on our Magento Repository or if you have some specific problems for your account you can contact [email protected] as well.

API Library

This module is using the Adyen APIs Library for PHP for all (API) connections to Adyen. This library can be found here

Setting up cronjob

The notifications of Adyen (this will give you the indication of the payment status) is processed by a cronjob. You need to setup your cronjob. This is described here

We have defined this:

<group id="index">
    <job name="adyen_payment_process_notification" instance="Adyen\Payment\Model\Cron" method="processNotification">
        <schedule>*/1 * * * *</schedule>
    </job>
</group>