spatie/laravel-event-sourcing
Event sourcing toolkit for Laravel: build aggregates, projectors, and reactors to store state changes as events. Ideal for audit trails, decisions based on history, and future reporting needs. Includes docs, examples, and an optional course.
Events will be serialized by the Spatie\EventSourcing\EventSerializers\JsonEventSerializer. Like the name implies, this class can serialize an event to json so it can be easily stored in a json column in the database.
You can specify your own serializer by creating a class that implements Spatie\EventSourcing\EventSerializers\EventSerializer and specifying the class in the event_serializer key of the event-sourcing.php config file.
This is the content of the EventSerializer interface:
namespace Spatie\EventSourcing\EventSerializers;
use Spatie\EventSourcing\ShouldBeStored;
interface EventSerializer
{
public function serialize(ShouldBeStored $event): string;
public function deserialize(string $eventClass, string $json, int $version, ?string $metadata = null): ShouldBeStored;
}
If an event payload has changed overtime, old events can be "upgraded" to the new payload on the fly in the event serializer.
Using our larabank example, let's imagine that we've gone international and our new accepting
international payments. Our MoneyAdded events will need to have an additional field for
the currency.
use App\Events\MoneyAdded;
class UpgradeSerializer extends JsonEventSerializer
{
public function deserialize(string $eventClass, string $json, int $version, ?string $metadata = null): ShouldBeStored
{
$event = parent::deserialize($eventClass, $json, $version, $metadata);
// all currency was USD before we started accepting other currencies
if ($eventClass === MoneyAdded::class && empty($event->currency)) {
$event->currency = 'USD';
}
return $event;
}
}
Our course, Event Sourcing in Laravel covers this topic in depth:
How can I help you explore Laravel packages today?