litecqrs-php
litecqrs-php copied to clipboard
Small convention based CQRS library for PHP
Do you plan to release next version? Doctrine ORM 2.5 is out and it's blacklisted in this package
Why does **setAggregateId()** in the _DomainEvent_ public. Shouldn't it be _protected_ or even _private_ access level. To keep the Event immutable.
Hey, I'm taking a look at the [SequentialCommandBus](https://github.com/beberlei/litecqrs-php/blob/master/src/LiteCQRS/Commanding/SequentialCommandBus.php) and I don't understand how it can work if a command is added to stack during the execution context of another command...
- Updated PHPDoc to reflect actual behaviour of SequentialCommandBus::handle() - Added test
Why AggregateResource so strongly coupled with domain model ? https://github.com/beberlei/litecqrs-php/blob/master/src/LiteCQRS/Plugin/CRUD/AggregateResource.php#L23 I think, inherit domain model from AggregateResource is not a good idea. Better to design without LiteCQRS dependency and incapsulate...
I am discovering the CQRS beauty and I am trying to figure out how to use it in a Symfony2 project (the do CQRS process in the Controller). Based on...
JMS changed things between 0.9 and 0.10. The more minor of the changes is the change from \SerializerBundle to \Serializer in the paths for Annotations etc. Not a big deal....
I see that the EventMessageBus is build to support Asynchronous execution by default (maybe a sideeffect of pushing events to EventStore) but Commands do not have that by default mainly...