-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
v1.0 #46
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[1.x] Refactor and expand generator commands
Bumps [dependabot/fetch-metadata](https://github.com/dependabot/fetch-metadata) from 1.6.0 to 2.0.0. - [Release notes](https://github.com/dependabot/fetch-metadata/releases) - [Commits](dependabot/fetch-metadata@v1.6.0...v2.0.0) --- updated-dependencies: - dependency-name: dependabot/fetch-metadata dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
…abot/fetch-metadata-2.0.0' into next
Looks great! When do you plan to release this? |
By end of this week or earlier. Maybe a few more minor cleanups to the internals, and test driving it in a couple of apps throughout the week to make sure things are seamless. |
* Domain autoloading and discovery (providers, commands, policies, factories) --------- Co-authored-by: Jasper Tey <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This is the v1.0 draft in progress on the
next
branch.To install:
Changelog so far
Added
ddd:list
to show a summary of current domains in the domain folder.ddd:dto
,ddd:data
,ddd:data-transfer-object
,ddd:datatransferobject
ddd:value
,ddd:valueobject
,ddd:value-object
ddd:view-model
,ddd:viewmodel
ddd:cast {domain}:{name}
ddd:channel {domain}:{name}
ddd:command {domain}:{name}
ddd:enum {domain}:{name}
(Laravel 11 only)ddd:event {domain}:{name}
ddd:exception {domain}:{name}
ddd:job {domain}:{name}
ddd:listener {domain}:{name}
ddd:mail {domain}:{name}
ddd:notification {domain}:{name}
ddd:observer {domain}:{name}
ddd:policy {domain}:{name}
ddd:provider {domain}:{name}
ddd:resource {domain}:{name}
ddd:rule {domain}:{name}
ddd:scope {domain}:{name}
Changed
ddd:action Invoicing CreateInvoice
, one of the following would be used:ddd:action CreateInvoice --domain=Invoicing
(this takes precedence).ddd:action Invoicing:CreateInvoice
.ddd:action CreateInvoice
to be prompted for the domain afterwards.ddd.base_view_model
is something other than the defaultDomain\Shared\ViewModels\ViewModel
. (resolves [1.x] Fix Base Models #50)ddd.namespaces.factory
(defaultDatabase\Factories
). Factories located in/database/factories/<domain>/*
(v0.x) will continue to work as a fallback when attempting to resolve a domain model's factory.Chore