Results 260 comments of webDEVILopers

Generally - even in your Domain Model namespace? Or just inside the bundles?

Upcoming PHP BC Break: PSR and all frameworks will remove Interface suffix and Abstract prefix from their naming conventions by default. ...Couldn't wait until April fools!

Regarding renaming @symfony Bundles to `UserInterface` for instance and removing the `Bundle` suffix it seams to be possible. Discussion on Twitter started here: https://twitter.com/webdevilopers/status/723201477016055808 @jaspernbrouwer @Ma27 Moving some parts of...

Thanks @Ma27 ! As soon as we have a concept for structure I will keep you up to date.

Another approach I've seen by @qandidate-labs @ricbra @wjzijderveld is to add the `FooBundle` into a `src/Bundle` folder: https://github.com/qandidate-labs/broadway/tree/master/src/Broadway

Some examples for changing namespaces from the @dumplie framework suggested by @norzechowicz: - https://github.com/dumplie/dumplie/pull/23 Separating Application Services to `Command` and `Query` namespaces. No `Domain\Model` or `DomainModel` namespace as suggested by...

Thanks for clearing this up @norzechowicz ! If you were to design @dumplie as a Symfony bundle I guess each bounded context would become its own Symfony App(Kernel) and things...

In most of my cases the `Infrastructure` layer only holds Doctrine related stuff. Symfony is a combination of `User Interface` or `Presentation Layer` (using TWIG for instance). I guess if...

Well, a microservice can be related to a bounded context in #DDD using CQRS or CRUD for instance. In both cases you should think about the directory structure.

Interesting approach by @jorge07. For anybody that is interested in putting the `Bundle` into their `infrastructure` folder this works includind the Suffix: ``` s generate:bundle --bundle-name=AcmeBoundedContextBundle --format=xml --namespace=Acme/BoundedContext/Infrastructure/Symfony/BoundedContextBundle --dir=src/ ```...