Skip to content

Commit

Permalink
Update wordings.
Browse files Browse the repository at this point in the history
  • Loading branch information
JasperTey committed Mar 25, 2024
1 parent c9dfefc commit d93d00d
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ All notable changes to `laravel-ddd` will be documented in this file.
## [Unversioned]
### Added
- `ddd:list` to show a summary of current domains in the domain folder.
- Additional generator commands that extend Laravel's generators and funnel the generated objects into the domain layer:
- Additional generators that extend Laravel's generators and funnel the generated objects into the domain layer:
- `ddd:cast {domain}:{name}`
- `ddd:channel {domain}:{name}`
- `ddd:command {domain}:{name}`
Expand All @@ -22,11 +22,13 @@ All notable changes to `laravel-ddd` will be documented in this file.
- `ddd:resource {domain}:{name}`
- `ddd:rule {domain}:{name}`
- `ddd:scope {domain}:{name}`
- For all `ddd:*` generator commands, if a domain wasn't specified, prompt for the domain with auto-completion (based on current domains in the domain folder).

### Changed
- BREAKING: `ddd:*` commands no longer receive a dedicated domain argument (e.g., `ddd:action Invoicing CreateInvoice`). The domain is instead specified in two ways:
- As an option: `ddd:action CreateInvoice --domain=Invoicing` (this will take precedence).
- Shorthand prefix within the name: `ddd:action Invoicing:CreateInvoice`.
- (BREAKING) `ddd:*` commands no longer receive a dedicated domain argument. Example: `ddd:action Invoicing CreateInvoice` can be one of:
- `ddd:action CreateInvoice --domain=Invoicing` (this takes precedence).
- Shorthand syntax: `ddd:action Invoicing:CreateInvoice`.
- Or simply `ddd:action CreateInvoice` to be prompted for the domain.

### Chore
- Dropped Laravel 9 support.
Expand Down

0 comments on commit d93d00d

Please sign in to comment.