PHP Package: illuminate/events

Illuminate Events is a PHP library enabling event management within applications, providing a robust system for event handling and delegation.

Current Version: 12.32.5
Last Updated: Date not available
PHP Requirement: ^8.2
Dependencies:
illuminate/support
illuminate/container
⚠️ To ensure full functionality, the above dependencies might be required.

Package Description

Illuminate Events is a powerful PHP library that facilitates event-driven programming, allowing developers to create and dispatch events across their applications seamlessly. With its intuitive event management system, developers can define event listeners and subscribers to handle various application events efficiently. Illuminate Events simplifies the process of event delegation, enabling developers to decouple components and enhance code maintainability.

📦 Show all available classes🔗 View on GitHub

Download Latest Version: 12.32.5

Download Download v12.32.5

Previous Versions

Code Integration Example

Make sure to include the correct namespace and class paths for proper usage.

<?php
// Example from PHPlibraries.com
require_once 'libs/illuminate/events/12.32.5/loader.php';
require_once 'libs/illuminate/support/12.33.0/loader.php';
require_once 'libs/illuminate/container/12.33.0/loader.php';

use Illuminate\Events\Dispatcher;
use Illuminate\Events\CallQueuedListener;

$obj = new Dispatcher();
echo '✅ Test OK: ' . get_class($obj);
?>

We aim to make using PHP packages easier without Composer. If something doesn't work, let us know — we'll fix it promptly.

Community Discussion

Ask questions, share tips, or report issues below.