PHP code example of slava-basko / bus-php

1. Go to this page and download the library: Download slava-basko/bus-php library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

slava-basko / bus-php example snippets


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

$bus->handle(new UserRegistrationCommand('[email protected]', 'secure-password'))
bash
composer