An open API service indexing awesome lists of open source software.

https://github.com/joomla-framework/event

Joomla Framework Event Package
https://github.com/joomla-framework/event

event-dispatcher event-listener joomla joomla-framework php

Last synced: about 1 year ago
JSON representation

Joomla Framework Event Package

Awesome Lists containing this project

README

          

# The Event Package [![Build Status](https://ci.joomla.org/api/badges/joomla-framework/event/status.svg?ref=refs/heads/3.x-dev)](https://ci.joomla.org/joomla-framework/event)

[![Latest Stable Version](https://poser.pugx.org/joomla/event/v/stable)](https://packagist.org/packages/joomla/event)
[![Total Downloads](https://poser.pugx.org/joomla/event/downloads)](https://packagist.org/packages/joomla/event)
[![Latest Unstable Version](https://poser.pugx.org/joomla/event/v/unstable)](https://packagist.org/packages/joomla/event)
[![License](https://poser.pugx.org/joomla/event/license)](https://packagist.org/packages/joomla/event)

The Joomla! **Event** package provides foundations to build event systems and an implementation supporting prioritized listeners.

## Requirements

* PHP 8.1 or later

## Installation via Composer

Add `"joomla/event": "~3.0"` to the require block in your composer.json and then run `composer install`.

```json
{
"require": {
"joomla/event": "~3.0"
}
}
```

Alternatively, you can simply run the following from the command line:

```sh
composer require joomla/event "~3.0"
```

If you want to include the test sources and docs, use

```sh
composer require --prefer-source joomla/event "~3.0"
```