When your symfony architecture is different like (ddd, cqrs, adr, custom architecture) you lost the powerfull of makerBundle, because directory structure is not at the same place. TwcMakerBundle try to revolve that, to wrap maker command and introduce "context" option.
composer require twc/maker-bundle --dev#config/packages/dev/twc_maker.yaml twc_maker: componentName: - { context: 'contextName', target: 'Your\SpecificNamespace' } - { context: 'contextName1', target: 'Your\SpecificNamespace' } - ...for entity component you must use target_entity and target_repository instead target
#config/packages/dev/twc_maker.yaml twc_maker: entity: - { context: 'contextName', target_entity: 'Your\SpecificEntityNamespace', target_repository: 'Your\SpecificRepositoryNamespace' }for controller you can specific dir to change generation folder (default contextName)
#config/packages/dev/twc_maker.yaml twc_maker: controller: - { context: 'contextName', target: 'Your\SpecificNamespace', dir: 'my/custom/directory/template' }TwcMakerBundle wrap maker command and add new option --context (shortcut -c)
#config/packages/dev/twc_maker.yaml twc_maker: message: - { context: 'post.command', target: 'App\Post\Application\Command' } - { context: 'post.query', target: 'App\Post\Application\Query' }in your console
php bin/console make:twc:message NewPost --context=post.command php bin/console make:twc:message AllPostsArchivedQuery --context=post.query#shortcut version php bin/console make:twc:message NewPost -c post.command php bin/console make:twc:message AllPostsArchivedQuery -c post.query results
created: src/Post/Application/Command/NewPost.php created: src/Post/Application/Command/NewPostHandler.php created: src/Post/Application/Query/AllPostArchivedQuery.php created: src/Post/Application/Query/AllPostArchivedQueryHandler.php #config/packages/dev/twc_maker.yaml twc_maker: entity: - { context: 'membership', target_entity: 'App\MemberShip\Domain\Entity', target_repository: 'App\MemberShip\Infrastructure\Doctrine\Repository' } controller: - { context: 'membership', target: 'App\MemberShip\Presenter\Controller' } form: - { context: 'membership', target: 'App\MemberShip\Presenter\Form' }in your console
php bin/console make:twc:entity UserMembership -c membershipresult
created: src/Membership/Domain/Entity/UserMemberShip.php created: src/Membership/Infrastructure/Doctrine/Repository/UserMemberShipRepository.phpIf your specific directory not created, clean cache and retry.
php bin/console c:c If you have error message like
Could not determine where to locate the new class "xxx" maybe try with a full namespace like Check your composer.json with PSR-4 config, maybe you need to add your namespace, or try with App\
Actually TwcMakerBundle wrap 9 components
| components |
|---|
| controller |
| validator |
| form |
| message |
| messenger-middleware |
| voter |
| command |
| fixtures |
| entity |