twc/maker-bundle
最新稳定版本:v7.0.3
Composer 安装命令:
composer require twc/maker-bundle
包简介
Wrap maker bundle to introduce context option to change destination template
README 文档
README
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.
Installation
composer require twc/maker-bundle --dev
Basic Usage
Generic configuration
#config/packages/dev/twc_maker.yaml twc_maker: componentName: - { context: 'contextName', target: 'Your\SpecificNamespace' } - { context: 'contextName1', target: 'Your\SpecificNamespace' } - ...
Specific configuration
Component entity
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' }
Component controller
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' }
Console
TwcMakerBundle wrap maker command and add new option --context (shortcut -c)
Sample with CQRS concept
#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
Sample with DDD concept
#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 membership
result
created: src/Membership/Domain/Entity/UserMemberShip.php created: src/Membership/Infrastructure/Doctrine/Repository/UserMemberShipRepository.php
Troubleshooting
Specific directory not created
If your specific directory not created, clean cache and retry.
php bin/console c:c
Could not determine where to locate the new class
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\
Support
Actually TwcMakerBundle wrap 9 components
| components |
|---|
| controller |
| validator |
| form |
| message |
| messenger-middleware |
| voter |
| command |
| fixtures |
| entity |
统计信息
- 总下载量: 17.93k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 14
- 点击次数: 2
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2020-04-21