slava-basko/bus-php

1.0.1 2025-09-26 22:10 UTC

This package is auto-updated.

Last update: 2025-09-26 22:13:50 UTC


README

For those who understand what it is and strive for simplicity.

Don't know what it is? Read this article (link to my blog).

Zero dependencies and PHP 5.5+.

$bus = CommandBus::create([
    UserRegistrationCommand::class => new UserRegistrationCommandHandler(),
]);

$bus->handle(new UserRegistrationCommand('john.doe@example.com', 'secure-password'))

Install

composer require slava-basko/bus-php