Skip to content
Gowri edited this page Dec 7, 2021 · 19 revisions

Introduction

Async Events allows you to define and process events asynchronously. A common use case for this is to create webhooks (publishers) or relaying information into another system in real time.

Requirements

  1. Magento >= 2.3.6
  2. PHP >= 7.0
  3. RabbitMQ (Recommended)

Getting Started

It is recommended that you install this module via composer. It is not published on packigist yet, therefore you will have to include the url of this git repository in your composer.json

{
  // ...
  "repositories": [
    {
      "type": "vsc",
      "url": "[email protected]:aligent/magento-async-events.git"
    }
  ]
}

then run composer require aligent/async-events to require it as a dependency via composer

Clone this wiki locally