Adyen Payment plugin for Magento2
Make sure you have "minimum-stability": "dev" in your magento composer.json set. Because the repositories are private you need to do the folowing:
- composer config repositories.adyen-adyen-magento2 vcs [email protected]:Adyen/adyen-magento2.git
- composer config repositories.adyen-php-api-library vcs [email protected]:Adyen/adyen-php-api-library.git
- composer require adyen/module-payment
Not yet used but communication through the API will go through this library. If you not have access to this repo please let us know.
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>