Skip to content

Adyen/adyen-magento2

Folders and files

NameName
Last commit message
Last commit date

Latest commit

787f9f5 · Jan 9, 2018
Dec 21, 2017
Dec 11, 2017
Jan 4, 2018
Jan 9, 2018
Jan 3, 2018
Jan 9, 2018
Jan 9, 2018
Aug 23, 2016
Jan 9, 2018
Jan 4, 2018
Jul 17, 2017
Jan 9, 2018
Jan 9, 2018
Dec 21, 2017
Jan 9, 2018
Aug 21, 2017
Dec 14, 2017
Jan 9, 2018
Dec 21, 2017
Feb 9, 2016

Repository files navigation

Adyen_Magento2

Adyen Payment plugin for Magento2. This plugin supports Magento2 version 2.1 and higher.
For Magento2 version 2.0 support, use plugin version 1.4.6.

Installation

bin/composer require adyen/module-payment
bin/magento module:enable Adyen_Payment
bin/magento setup:upgrade

Manual

Magento 2 documentation

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>