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
- Host: GitHub
- URL: https://github.com/joomla-framework/event
- Owner: joomla-framework
- License: gpl-2.0
- Created: 2013-04-02T02:26:00.000Z (about 13 years ago)
- Default Branch: 3.x-dev
- Last Pushed: 2024-10-08T21:11:37.000Z (over 1 year ago)
- Last Synced: 2025-03-29T16:08:58.906Z (about 1 year ago)
- Topics: event-dispatcher, event-listener, joomla, joomla-framework, php
- Language: PHP
- Homepage:
- Size: 5.41 MB
- Stars: 8
- Watchers: 10
- Forks: 10
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Contributing: .github/CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
README
# The Event Package [](https://ci.joomla.org/joomla-framework/event)
[](https://packagist.org/packages/joomla/event)
[](https://packagist.org/packages/joomla/event)
[](https://packagist.org/packages/joomla/event)
[](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"
```