PHP Package: illuminate/bus

Illuminate Bus is a PHP library for handling event bus and message dispatching efficiently.

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

Package Description

Illuminate Bus is a powerful PHP library that provides a robust infrastructure for dispatching events and messages within your application. It helps in decoupling components and simplifying communication between different parts of your system. With Illuminate Bus, you can easily manage asynchronous tasks, handle complex workflows, and improve the overall scalability of your project.

🔗 View on GitHub

Download Latest Version: 12.2.0

Download Download v12.2.0

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/bus/12.2.0/autoload.php';

use Illuminate\Bus\Dispatcher;
use Illuminate\Bus\PendingDispatch;
use Illuminate\Bus\BusServiceProvider;


$obj = new Illuminate\Bus\Dispatcher();
echo "✅ Example created successfully.";

?>

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