adyen / module-payment

adyen/module-payment

Official Magento2 Plugin to connect to Payment Service Provider Adyen.

magento2-module Compatibility: 2.4.8-2.4.9 Code Quality: Fail Tests: Fail Security: Pass MIT

Are you the maintainer of adyen?

Packagento pulls adyen's Composer packages from the public registry so buyers can find them here.

Claim the namespace to take ownership, publish new releases directly, and start charging for premium versions.

Claim this namespace →

Adyen Payment plugin for Adobe Commerce (Magento 2)

Use Adyen's plugin for Magento 2 to offer frictionless payments online, in-app, and in-store.

Integration

The plugin integrates card component (Secured Fields) using Adyen Checkout for all card payments. For Point Of Sale (POS) payments we use Terminal API using Cloud-based communication.

Support Vault and Instant Purchase

Inside Adyen toggle the following settings on inside the API and Responses section (Settings -> API and Responses):

  • Recurring details
  • Card bin
  • Card summary
  • Expiry date
  • Variant

Requirements

This plugin is compatible with Magento version 2.4.8 only.

Releases

  1. Major releases are done ONLY when absolutely required. We try to not to introduce breaking changes and do major releases as rare as possible. Current average is yearly.
  2. A minor or a patch release is scheduled but not limited to once every 2 weeks.

Note: This can be subject to change based on the load and dependancies of the Integration tools team.

Customizing Adobe Commerce Plugin

You can customize your shoppers' checkout experience and add custom functionality to the plugin to meet your business needs. For example, you can apply modifications to the checkout process, or customize the style of your checkout to match your brand.

For customizations, developers should extend the plugin by following Adyen’s API and Adyen Plugin Customisation Guide. If you customize inside of the default Adyen plugin, Adyen may be unable to provide plugin support, and upgrading and troubleshooting your integration will require additional effort.

For more details, refer to:

Support & Troubleshooting for Headfull Magento/ Adobe Commerce Plugin

We provide specialized plugin support for major versions of the plugin following Adyen Adobe Commerce Support policy for 2 years, along with permanent Adyen support. Contact our support team here.

When a major plugin version is no longer under Adyen Adobe Commerce plugin support, it will be treated as a custom merchant integration. It is recommended to upgrade your payments plugin every 1-2 years.

Support & Troubleshooting for Headless Adobe Commerce Payments

Adyen Plugin Support can help you with questions relating to the core backend functionality of the Adobe Commerce Headless Payment integration, including API request processing, authentication, and payment lifecycle management. Contact our support team here.

However, merchant-specific customizations, including frontend implementations, collection of shopper details, rendering of payment methods on custom front-end, middleware configurations e.g. placing the order, handling additional actions, checking payment status etc.; and third-party dependencies - fall outside the scope of Adyen support.

We recommend leveraging Adyen’s debugging tools to troubleshoot custom Headless implementations:

Contributing

We strongly encourage you to join us in contributing to this repository so everyone can benefit from:

  • New features and functionality
  • Resolved bug fixes and issues
  • Any general improvements

Read our contribution guidelines to find out how.

Installation

You can install our plugin through Composer:

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

For more information see our installation section.

Documentation

Setup Cron

Make sure that your Magento cron is running every minute. We are using a cronjob to process the notifications (our webhook service) and to update Adyen servers' IP addresses. The cronjobs will be executed every minute.

<group id="adyen_payment">
    <!-- Process stored Adyen webhooks/notifications -->
    <job name="adyen_payment_process_notification"
         instance="Adyen\Payment\Cron\WebhookProcessor"
         method="execute">
        <schedule>*/1 * * * *</schedule>
    </job>

    <!-- Refresh Adyen server IP address list used for webhook validation -->
    <job name="adyen_payment_server_address_caching"
         instance="Adyen\Payment\Cron\ServerIpAddress"
         method="execute">
        <schedule>*/1 * * * *</schedule>
    </job>

    <!-- Cancel expired/pending orders (daily) -->
    <job name="adyen_payment_cancel_expired_orders"
         instance="AdyenCancelOrders"
         method="execute">
        <schedule>0 0 * * *</schedule>
    </job>

    <!-- Clean up persisted checkout state data (daily) -->
    <job name="adyen_payment_state_data_clean_up"
         instance="Adyen\Payment\Cron\StateDataCleanUp"
         method="execute">
        <schedule>0 0 * * *</schedule>
    </job>

    <!-- Remove processed webhook records (runs every 5 minutes during the 00:00 hour) -->
    <job name="adyen_payment_remove_processed_webhooks"
         instance="Adyen\Payment\Cron\RemoveProcessedWebhooks"
         method="execute">
        <schedule>*/5 0 * * *</schedule>
    </job>
</group>

The notification processing service queries the records that have been received at least 2 minutes ago. This is to ensure that 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 Marketplace or GitHub.

If you need to setup your cronjob in Magento this is described here.

Supported Payment Methods

See our documentation for a full list of supported payment methods.

Raising issues

If you have a feature request, or spotted a bug or a technical problem, create a GitHub issue.

API Library

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

License

MIT license. For more information, see the LICENSE file.

No changelog yet

The vendor hasn't published a changelog. Tagged releases appear in the Versions tab.

Versions
Version Stability QA Status Compatibility Released
10.10.2 stable Fail Magento 2.4.8-2.4.9 Details 2026-05-12 14:25:16
9.20.15 stable Not tested Not yet tested Details 2026-05-12 14:11:58
10.10.1 stable Not tested Not yet tested Details 2026-04-14 13:29:42
9.20.14 stable Not tested Not yet tested Details 2026-04-14 13:27:44
10.10.0 stable Not tested Not yet tested Details 2026-03-31 14:00:19
10.9.0 stable Not tested Not yet tested Details 2026-03-17 13:17:11
9.20.13 stable Not tested Not yet tested Details 2026-03-17 13:16:43
10.8.0 stable Not tested Not yet tested Details 2026-03-03 14:37:55
9.20.12 stable Not tested Not yet tested Details 2026-02-17 15:14:35
10.7.2 stable Not tested Not yet tested Details 2026-02-17 15:14:32
10.7.1 stable Not tested Not yet tested Details 2026-02-12 14:44:55
9.20.11 stable Not tested Not yet tested Details 2026-02-12 14:43:26
10.7.0 stable Not tested Not yet tested Details 2026-02-03 12:35:20
10.6.1 stable Not tested Not yet tested Details 2026-01-20 14:40:31
9.20.10 stable Not tested Not yet tested Details 2026-01-20 14:36:27
10.6.0 stable Not tested Not yet tested Details 2026-01-06 16:09:54
9.20.9 stable Not tested Not yet tested Details 2026-01-06 15:55:59
9.20.8 stable Not tested Not yet tested Details 2025-12-23 13:57:40
10.5.6 stable Not tested Not yet tested Details 2025-12-23 12:47:46
10.5.5 stable Not tested Not yet tested Details 2025-12-09 15:27:24
9.20.7 stable Not tested Not yet tested Details 2025-12-09 15:14:10
10.5.4 stable Not tested Not yet tested Details 2025-11-25 15:50:33
9.20.6 stable Not tested Not yet tested Details 2025-11-25 15:38:44
9.20.5 stable Not tested Not yet tested Details 2025-11-19 08:21:48
10.5.3 stable Not tested Not yet tested Details 2025-11-11 12:43:11
9.20.4 stable Not tested Not yet tested Details 2025-11-11 12:42:10
10.5.2 stable Not tested Not yet tested Details 2025-11-03 14:26:40
9.20.3 stable Not tested Not yet tested Details 2025-10-28 12:55:30
10.5.1 stable Not tested Not yet tested Details 2025-10-28 12:48:18
10.5.0 stable Not tested Not yet tested Details 2025-10-14 13:42:18
9.20.2 stable Not tested Not yet tested Details 2025-10-02 14:35:25
10.4.0 stable Not tested Not yet tested Details 2025-09-30 13:24:04
10.3.0 stable Not tested Not yet tested Details 2025-09-16 15:06:06
10.2.0 stable Not tested Not yet tested Details 2025-09-03 14:06:23
9.20.1 stable Not tested Not yet tested Details 2025-08-19 13:48:40
10.1.1 stable Not tested Not yet tested Details 2025-08-19 13:48:13
9.20.0 stable Not tested Not yet tested Details 2025-08-05 13:41:15
10.1.0 stable Not tested Not yet tested Details 2025-08-05 13:41:11
10.0.0 stable Not tested Not yet tested Details 2025-07-22 13:49:54
9.19.2 stable Not tested Not yet tested Details 2025-07-22 09:15:15
10.0.0-rc1 RC Not tested Not yet tested Details 2025-07-08 13:30:45
9.19.1 stable Not tested Not yet tested Details 2025-07-02 13:01:15
9.19.0 stable Not tested Not yet tested Details 2025-06-25 15:12:31
9.18.1 stable Not tested Not yet tested Details 2025-05-27 07:25:55
9.18.0 stable Not tested Not yet tested Details 2025-05-13 14:06:09
9.17.1 stable Not tested Not yet tested Details 2025-04-18 12:02:04
9.17.0 stable Not tested Not yet tested Details 2025-04-01 10:55:58
9.16.1 stable Not tested Not yet tested Details 2025-03-19 09:17:47
9.16.0 stable Not tested Not yet tested Details 2025-03-04 15:29:02
9.15.0 stable Not tested Not yet tested Details 2025-02-18 14:27:40
9.14.1 stable Not tested Not yet tested Details 2025-02-05 15:38:40
9.14.0 stable Not tested Not yet tested Details 2025-01-21 15:16:25
9.13.0 stable Not tested Not yet tested Details 2025-01-08 13:19:42
9.12.2 stable Not tested Not yet tested Details 2024-12-24 10:14:51
9.12.1 stable Not tested Not yet tested Details 2024-12-10 11:53:35
9.12.0 stable Not tested Not yet tested Details 2024-11-26 15:13:11
8.24.0 stable Not tested Not yet tested Details 2024-11-18 14:06:31
9.11.0 stable Not tested Not yet tested Details 2024-11-14 16:19:10
9.10.0 stable Not tested Not yet tested Details 2024-11-12 13:54:06
9.9.2 stable Fail Magento 2.4.7 Details 2024-11-01 08:51:00
8.23.4 stable Not tested Not yet tested Details 2024-10-24 12:55:14
9.9.1 stable Not tested Not yet tested Details 2024-10-04 07:49:48
9.9.0 stable Not tested Not yet tested Details 2024-10-03 11:47:05
8.23.3 stable Not tested Not yet tested Details 2024-09-19 07:30:16
9.8.1 stable Not tested Not yet tested Details 2024-09-17 12:00:04
9.8.0 stable Not tested Not yet tested Details 2024-09-10 11:38:15
9.7.2 stable Not tested Not yet tested Details 2024-08-20 15:59:28
9.7.1 stable Not tested Not yet tested Details 2024-08-14 09:29:29
8.23.2 stable Not tested Not yet tested Details 2024-08-09 13:32:26
8.23.1 stable Not tested Not yet tested Details 2024-07-29 11:00:51
9.6.2 stable Not tested Not yet tested Details 2024-07-24 13:38:39
8.23.0 stable Not tested Not yet tested Details 2024-07-09 14:34:18
9.6.1 stable Not tested Not yet tested Details 2024-07-09 13:26:36
9.6.0 stable Not tested Not yet tested Details 2024-06-11 12:37:54
9.5.3 stable Not tested Not yet tested Details 2024-05-29 14:15:07
8.22.9 stable Not tested Not yet tested Details 2024-05-28 09:40:03
9.5.2 stable Not tested Not yet tested Details 2024-05-21 12:10:27
9.5.1 stable Not tested Not yet tested Details 2024-05-01 13:08:00
9.5.0 stable Not tested Not yet tested Details 2024-04-19 12:34:35
9.4.1 stable Not tested Not yet tested Details 2024-04-05 15:20:01
9.4.0 stable Not tested Not yet tested Details 2024-03-25 09:55:05
8.22.8 stable Not tested Not yet tested Details 2024-03-08 14:42:03
9.3.0 stable Not tested Not yet tested Details 2024-03-08 14:39:16
9.2.0 stable Not tested Not yet tested Details 2024-02-22 14:44:19
9.1.0 stable Not tested Not yet tested Details 2024-02-09 15:56:03
9.0.7 stable Not tested Not yet tested Details 2024-01-26 15:10:22
8.22.7 stable Not tested Not yet tested Details 2024-01-26 14:42:25
9.0.6 stable Not tested Not yet tested Details 2024-01-12 13:39:52
9.0.5 stable Not tested Not yet tested Details 2023-12-28 14:43:13
8.22.6 stable Not tested Not yet tested Details 2023-12-28 14:41:53
9.0.4 stable Not tested Not yet tested Details 2023-12-15 09:02:28
9.0.3 stable Not tested Not yet tested Details 2023-12-04 16:08:41
8.22.5 stable Not tested Not yet tested Details 2023-12-01 10:15:36
8.22.4 stable Not tested Not yet tested Details 2023-11-07 12:39:41
9.0.2 stable Not tested Not yet tested Details 2023-10-26 13:55:31
9.0.0-beta1 beta Not tested Not yet tested Details 2023-10-23 12:31:08
9.0.1 stable Not tested Not yet tested Details 2023-10-23 12:09:19
9.0.0-beta beta Not tested Not yet tested Details 2023-10-23 12:07:53
8.22.2 stable Not tested Not yet tested Details 2023-10-12 22:44:20
8.22.1 stable Not tested Not yet tested Details 2023-10-06 11:47:53
8.22.0 stable Not tested Not yet tested Details 2023-09-25 07:05:35
8.21.0 stable Not tested Not yet tested Details 2023-09-07 15:24:47
8.20.1 stable Not tested Not yet tested Details 2023-08-18 15:04:12
8.20.0 stable Not tested Not yet tested Details 2023-08-14 08:59:39
8.19.1 stable Not tested Not yet tested Details 2023-07-14 11:42:27
8.19.0 stable Not tested Not yet tested Details 2023-06-29 13:42:44
8.18.2 stable Not tested Not yet tested Details 2023-05-25 13:50:59
8.18.1 stable Not tested Not yet tested Details 2023-05-04 13:19:42
8.18.0 stable Not tested Not yet tested Details 2023-04-20 14:14:44
8.17.1 stable Not tested Not yet tested Details 2023-04-07 07:49:03
8.17.0 stable Not tested Not yet tested Details 2023-03-23 13:27:37
8.16.0 stable Not tested Not yet tested Details 2023-03-10 12:14:38
8.15.0 stable Not tested Not yet tested Details 2023-02-10 08:37:15
8.14.0 stable Not tested Not yet tested Details 2023-01-26 10:28:47
8.13.0 stable Not tested Not yet tested Details 2023-01-12 14:13:53
8.12.0 stable Not tested Not yet tested Details 2022-12-30 12:18:48
8.11.1 stable Not tested Not yet tested Details 2022-12-16 11:54:00
8.11.0 stable Not tested Not yet tested Details 2022-12-01 14:33:10
8.10.0 stable Not tested Not yet tested Details 2022-11-17 10:11:57
8.9.0 stable Not tested Not yet tested Details 2022-11-03 15:42:21
7.3.13 stable Not tested Not yet tested Details 2022-11-03 12:03:42
8.8.0 stable Not tested Not yet tested Details 2022-10-21 14:59:36
8.7.0 stable Not tested Not yet tested Details 2022-10-07 09:08:54
8.6.0 stable Not tested Not yet tested Details 2022-09-23 12:41:40
8.5.0 stable Not tested Not yet tested Details 2022-09-08 12:37:26
8.4.0 stable Not tested Not yet tested Details 2022-08-25 13:44:20
8.3.5 stable Not tested Not yet tested Details 2022-08-11 13:47:02
8.3.4 stable Not tested Not yet tested Details 2022-08-11 07:57:41
7.3.12 stable Not tested Not yet tested Details 2022-08-11 07:30:03
8.3.3 stable Not tested Not yet tested Details 2022-07-28 13:55:32
8.3.2 stable Not tested Not yet tested Details 2022-07-14 14:40:48
7.3.11 stable Not tested Not yet tested Details 2022-07-14 13:02:17
8.3.1 stable Not tested Not yet tested Details 2022-07-07 15:47:45
8.3.0 stable Not tested Not yet tested Details 2022-06-30 16:14:07
7.3.10 stable Not tested Not yet tested Details 2022-06-17 06:52:32
8.2.5 stable Not tested Not yet tested Details 2022-06-16 13:43:08
7.3.9 stable Not tested Not yet tested Details 2022-06-13 07:45:14
8.2.4 stable Not tested Not yet tested Details 2022-06-03 13:53:58
6.7.7 stable Not tested Not yet tested Details 2022-05-20 13:33:21
8.2.3 stable Not tested Not yet tested Details 2022-05-20 13:06:20
7.3.8 stable Not tested Not yet tested Details 2022-05-06 09:52:41
8.2.2 stable Not tested Not yet tested Details 2022-05-04 09:59:30
8.2.1 stable Not tested Not yet tested Details 2022-04-19 13:40:28
7.3.7 stable Not tested Not yet tested Details 2022-04-07 14:45:44
8.2.0 stable Not tested Not yet tested Details 2022-04-06 14:49:40
6.7.6 stable Not tested Not yet tested Details 2022-02-24 12:50:58
7.3.6 stable Not tested Not yet tested Details 2022-02-16 12:55:04
8.1.1 stable Not tested Not yet tested Details 2022-01-25 11:02:48
7.3.5 stable Not tested Not yet tested Details 2022-01-25 11:02:16
8.1.0 stable Not tested Not yet tested Details 2022-01-07 10:23:40
7.3.4 stable Not tested Not yet tested Details 2022-01-05 15:04:46
7.3.3 stable Not tested Not yet tested Details 2021-12-09 14:32:44
7.3.2 stable Fail Not compatible Details 2021-12-01 14:53:15
8.0.0 stable Not tested Not yet tested Details 2021-11-22 12:56:33
6.7.5 stable Not tested Not yet tested Details 2021-11-11 08:25:36
7.3.1 stable Not tested Not yet tested Details 2021-10-26 11:02:34
7.3.0 stable Not tested Not yet tested Details 2021-10-14 15:43:33
6.7.4 stable Not tested Not yet tested Details 2021-10-06 09:07:52
6.7.3 stable Not tested Not yet tested Details 2021-09-30 14:52:41
7.2.0 stable Not tested Not yet tested Details 2021-08-24 15:14:33
6.7.2 stable Not tested Not yet tested Details 2021-07-02 14:24:07
7.1.0 stable Not tested Not yet tested Details 2021-06-22 08:16:24
6.7.1 stable Not tested Not yet tested Details 2021-05-21 11:52:12
7.0.1 stable Not tested Not yet tested Details 2021-05-12 12:45:52
7.0.0 stable Not tested Not yet tested Details 2021-04-09 13:36:58
6.7.0 stable Not tested Not yet tested Details 2021-03-29 11:25:45
7.0.0-rc.2 RC Not tested Not yet tested Details 2021-01-29 14:17:28
6.6.9 stable Not tested Not yet tested Details 2021-01-14 08:00:18
7.0.0-rc.1 RC Not tested Not yet tested Details 2020-12-28 13:42:13
6.6.8 stable Not tested Not yet tested Details 2020-12-21 13:39:56
6.6.6 stable Not tested Not yet tested Details 2020-12-03 15:57:34
6.6.5 stable Not tested Not yet tested Details 2020-11-06 15:21:11
6.6.4 stable Not tested Not yet tested Details 2020-10-29 14:35:24
6.6.3 stable Not tested Not yet tested Details 2020-10-28 08:28:27
6.6.2 stable Not tested Not yet tested Details 2020-10-23 08:35:45
6.6.1 stable Not tested Not yet tested Details 2020-10-09 15:55:30
6.6.0 stable Not tested Not yet tested Details 2020-09-24 14:38:04
6.5.0 stable Not tested Not yet tested Details 2020-09-01 15:05:41
6.4.0 stable Not tested Not yet tested Details 2020-07-31 08:12:29
6.3.0 stable Not tested Not yet tested Details 2020-07-23 09:32:19
6.2.1 stable Not tested Not yet tested Details 2020-07-13 12:06:05
6.2.0 stable Not tested Not yet tested Details 2020-06-26 14:43:40
6.1.2 stable Not tested Not yet tested Details 2020-06-25 07:28:02
6.1.1 stable Not tested Not yet tested Details 2020-06-12 08:29:04
6.1.0 stable Not tested Not yet tested Details 2020-05-15 13:13:59
6.0.0 stable Not tested Not yet tested Details 2020-03-31 15:09:24
5.4.0 stable Not tested Not yet tested Details 2020-02-18 21:00:11
5.3.0 stable Not tested Not yet tested Details 2020-01-28 09:47:12
5.2.0 stable Not tested Not yet tested Details 2020-01-21 12:56:15
5.1.0 stable Not tested Not yet tested Details 2019-12-16 12:36:21
5.0.2 stable Not tested Not yet tested Details 2019-11-14 16:49:28
5.0.1 stable Not tested Not yet tested Details 2019-11-11 12:55:48
5.0.0 stable Not tested Not yet tested Details 2019-11-01 13:21:57
4.5.4 stable Not tested Not yet tested Details 2019-10-10 09:55:44
4.5.3 stable Not tested Not yet tested Details 2019-10-02 12:04:08
4.5.2 stable Not tested Not yet tested Details 2019-09-24 08:54:18
4.5.1 stable Not tested Not yet tested Details 2019-09-05 14:02:00
4.5.0 stable Not tested Not yet tested Details 2019-09-05 13:00:52
4.4.0 stable Not tested Not yet tested Details 2019-08-14 12:25:17
4.3.0 stable Not tested Not yet tested Details 2019-08-05 10:05:52
4.2.1 stable Not tested Not yet tested Details 2019-06-13 11:00:48
4.2.0 stable Not tested Not yet tested Details 2019-05-29 08:58:17
4.1.1 stable Not tested Not yet tested Details 2019-05-17 13:29:50
4.1.0 stable Not tested Not yet tested Details 2019-05-10 10:18:08
4.0.3 stable Not tested Not yet tested Details 2019-05-03 14:36:17
4.0.2 stable Not tested Not yet tested Details 2019-04-19 07:16:11
4.0.1 stable Not tested Not yet tested Details 2019-03-15 14:38:38
4.0.0 stable Not tested Not yet tested Details 2019-03-07 13:04:56
3.0.0 stable Not tested Not yet tested Details 2019-01-11 08:15:12
2.4.3 stable Not tested Not yet tested Details 2018-12-21 08:38:21
2.4.2 stable Not tested Not yet tested Details 2018-12-18 07:17:56
2.4.1 stable Not tested Not yet tested Details 2018-12-04 13:55:03
2.4.0 stable Not tested Not yet tested Details 2018-11-30 07:48:50
2.3.3 stable Not tested Not yet tested Details 2018-10-24 14:12:14
2.3.2 stable Not tested Not yet tested Details 2018-09-25 10:55:16
2.3.1 stable Not tested Not yet tested Details 2018-08-10 13:43:14
2.3.0 stable Not tested Not yet tested Details 2018-06-22 09:25:38
2.2.0 stable Not tested Not yet tested Details 2018-01-09 15:05:11
2.1.3 stable Not tested Not yet tested Details 2017-11-16 11:00:22
2.1.2 stable Not tested Not yet tested Details 2017-09-13 14:58:48
2.1.1 stable Not tested Not yet tested Details 2017-08-22 12:47:34
2.1.0 stable Not tested Not yet tested Details 2017-08-17 11:13:25
2.0.6 stable Not tested Not yet tested Details 2017-06-23 06:57:45
2.0.5 stable Not tested Not yet tested Details 2017-05-23 11:19:19
2.0.4 stable Not tested Not yet tested Details 2017-05-12 11:08:56
2.0.3 stable Not tested Not yet tested Details 2017-03-29 09:17:29
2.0.2 stable Not tested Not yet tested Details 2016-12-21 12:02:47
2.0.1 stable Not tested Not yet tested Details 2016-11-18 11:07:01
2.0.0 stable Not tested Not yet tested Details 2016-11-07 12:22:29
1.4.6 stable Not tested Not yet tested Details 2016-10-28 10:51:28
1.4.5 stable Not tested Not yet tested Details 2016-07-20 06:29:31
1.4.4 stable Not tested Not yet tested Details 2016-06-24 10:00:09
1.4.3 stable Not tested Not yet tested Details 2016-06-23 15:01:08
1.4.2 stable Not tested Not yet tested Details 2016-06-23 10:01:12
1.4.1 stable Not tested Not yet tested Details 2016-06-14 06:26:18
1.4.0 stable Not tested Not yet tested Details 2016-06-02 14:11:47
1.3.0 stable Not tested Not yet tested Details 2016-05-23 10:32:25
1.2.1 stable Not tested Not yet tested Details 2016-04-06 21:14:20
1.2.0 stable Not tested Not yet tested Details 2016-03-10 09:54:08
1.1.2 stable Not tested Not yet tested Details 2016-02-19 08:57:44
1.1.1 stable Not tested Not yet tested Details 2016-02-16 10:43:15
1.1.0 stable Not tested Not yet tested Details 2016-02-09 16:00:53

Requires 11

Package Constraint
php ~8.2.0||~8.3.0||~8.4.0||~8.5.0
adyen/php-api-library ^28.1.0
adyen/php-webhook-module ^1.1.0
magento/framework >=103.0.8
magento/module-vault >=101.2.8
magento/module-multishipping >=100.4.8
magento/module-graph-ql >=100.4.8
magento/module-instant-purchase >=100.4.7
magento/module-checkout-agreements >=100.4.7
magento/module-csp >=100.4.7
ext-json *

Requires-dev 4

Package Constraint
phpunit/phpunit ^10.5
phpstan/phpstan ^1.9
magento/magento-coding-standard *
squizlabs/php_codesniffer ~3.13.0

Compatibility

Each Magento release line is installed on its supported PHP versions, then the module is built (DI compilation + static-content deploy) and its unit and integration suites are run. The matrix shows the lines and PHP versions the module is confirmed to install and run on. Code-quality results further down (phpstan, phpcs, …) are reported separately and never affect compatibility.

Compatibility matrix (Magento × PHP)
Magento PHP 8.2 PHP 8.3 PHP 8.4 PHP 8.5
2.4.7 not tested not tested
2.4.8 Pass Pass
2.4.9 Pass Pass

Code Quality

Advisory checks against the module's source. Static analysis runs once across the whole module; PHPStan re-runs per Magento + PHP version because resolvable symbols differ between releases. These NEVER affect the Compatibility badge. A phpcs finding can't make a module incompatible.

Static analysis

Coding standards (phpcs), mess detection (phpmd), copy-pasted code (cpd), PHP cross-version compatibility, composer.json validity. Each runs once for the whole module.

Static analysis results
Tool Status Findings Summary
PHPCS Warning 2837 2837 warnings (ruleset: Magento2) — 711 auto-fixable with phpcbf
PHPMD Warning 450 450 rule violations (UndefinedVariable:143, UnusedFormalParameter:90, MissingImport:68, CyclomaticComplexity:20, ExcessiveMethodLength:18)
Cpd Warning 30 30 duplicated chunks spanning 825 total lines (min-lines=5, min-tokens=70)
Composer validate Info 8 valid; 8 advisory notes (composer validate --strict)

PHPStan

Type-checks the module's PHP against a real Magento install at the configured gate level. Re-runs per Magento and PHP version because resolvable symbols differ between releases.

PHPStan results by Magento and PHP version
Magento PHP 8.2 PHP 8.3 PHP 8.4 PHP 8.5
2.4.7 Error Error
2.4.8 397 396
2.4.9 383 383

Tests

Unit and integration suites, run for each applicable Magento and PHP version. A test failure speaks to the module's behaviour, not its compatibility with a Magento line, so it is reported here separately and never reddens the compatibility matrix.

Unit tests

Unit tests results by Magento and PHP version
Magento PHP 8.2 PHP 8.3 PHP 8.4 PHP 8.5
2.4.7 Error Error
2.4.8 Pass Pass
2.4.9 Pass Pass

Integration tests

Integration tests results by Magento and PHP version
Magento PHP 8.2 PHP 8.3 PHP 8.4 PHP 8.5
2.4.7 N/A N/A
2.4.8 N/A N/A
2.4.9 N/A N/A

Security

Security checks run directly against the module: an audit of its declared dependencies for known vulnerabilities (composer audit) and a scan of its source for malware and web-shell signatures. Each runs once. A malware detection fails the version outright.

Security results
Tool Status Findings Summary
Composer audit Pass 0
Malware scan Pass 0
License
MIT

More from adyen

View vendor
Make it pay

Turn an existing module into recurring revenue.

If you already maintain a Magento 2 module on GitHub or GitLab, listing it on Packagento takes about five minutes. We mirror your tags, handle distribution signing, and route paid licenses through Stripe Connect, so you can keep shipping the way you already do.