laravel-event-sourcing

The easiest way to get started with event sourcing in Laravel

MIT License

Downloads
1.8M
Stars
768
Committers
125

Bot releases are visible (Hide)

laravel-event-sourcing - 7.2.4

Published by freekmurze about 2 years ago

What's Changed

New Contributors

Full Changelog: https://github.com/spatie/laravel-event-sourcing/compare/7.2.3...7.2.4

laravel-event-sourcing - 7.2.3

Published by freekmurze about 2 years ago

What's Changed

New Contributors

Full Changelog: https://github.com/spatie/laravel-event-sourcing/compare/7.2.2...7.2.3

laravel-event-sourcing - 7.2.2

Published by freekmurze over 2 years ago

What's Changed

New Contributors

Full Changelog: https://github.com/spatie/laravel-event-sourcing/compare/7.2.1...7.2.2

laravel-event-sourcing - 7.2.1

Published by freekmurze over 2 years ago

What's Changed

New Contributors

Full Changelog: https://github.com/spatie/laravel-event-sourcing/compare/7.2.0...7.2.1

laravel-event-sourcing - 7.2.0

Published by brendt over 2 years ago

What's Changed

Full Changelog: https://github.com/spatie/laravel-event-sourcing/compare/7.0.1...7.2.0

laravel-event-sourcing - 7.0.1

Published by brendt over 2 years ago

What's Changed

New Contributors

Full Changelog: https://github.com/spatie/laravel-event-sourcing/compare/7.0.0...7.0.1

laravel-event-sourcing - 7.0.0

Published by freekmurze over 2 years ago

laravel-event-sourcing - 6.0.5

Published by brendt over 2 years ago

What's Changed

Full Changelog: https://github.com/spatie/laravel-event-sourcing/compare/6.0.4...6.0.5

laravel-event-sourcing - 6.0.4

Published by brendt almost 3 years ago

  • Don't mutate original events in FakeAggregateRoot::getRecordedEventsWithoutUuid (#296)
laravel-event-sourcing - 6.0.3

Published by freekmurze almost 3 years ago

laravel-event-sourcing - 6.0.2

Published by brendt almost 3 years ago

  • Skip retrieve on aggregate::fake (#294)
laravel-event-sourcing - 6.0.1

Published by brendt almost 3 years ago

  • Fix for aggregate root testing without a database #292
laravel-event-sourcing - 6.0.0

Published by brendt almost 3 years ago

  • Support PHP 8.1
  • The EventHandler interface was changed in order to use the spatie/better-types package:
-    public function handles(): array;
+    public function handles(StoredEvent $storedEvent): bool;

-    public function handle(StoredEvent $event);
+    public function handle(StoredEvent $storedEvent): void;
laravel-event-sourcing - 5.0.8

Published by freekmurze almost 3 years ago

What's Changed

Full Changelog: https://github.com/spatie/laravel-event-sourcing/compare/5.0.7...5.0.8

laravel-event-sourcing - 5.0.7

Published by freekmurze almost 3 years ago

What's Changed

New Contributors

Full Changelog: https://github.com/spatie/laravel-event-sourcing/compare/5.0.6...5.0.7

laravel-event-sourcing - 5.0.6

Published by freekmurze about 3 years ago

  • fix AggregateRoot return types for static analysis (#251)
laravel-event-sourcing - 5.0.5

Published by brendt about 3 years ago

  • Use jsonb in migration stubs instead of json (#237)
laravel-event-sourcing - 5.0.4

Published by brendt over 3 years ago

  • Fix visual glitch in event-sourcing:list command where event handlers wouldn't be shown
laravel-event-sourcing - 5.0.3

Published by freekmurze over 3 years ago

  • fix $whenResult (#227)
laravel-event-sourcing - 5.0.2

Published by brendt over 3 years ago

  • Support legacy spatie/laravel-schemaless-attributes:^1.0 as well