Laravel-DDD is a toolkit to support domain driven design (DDD) in Laravel applications. One of the pain points when adopting DDD is the inability to use Laravel's native make
commands to generate domain objects since they are typically stored outside the App\*
namespace. This package aims to fill the gaps by providing equivalent commands such as ddd:model
, ddd:dto
, ddd:view-model
and many more.
You can install the package via composer:
composer require lunarstorm/laravel-ddd
You may initialize the package using the ddd:install
artisan command. This will publish the config file, register the domain path in your project's composer.json psr-4 autoload configuration on your behalf, and allow you to publish generator stubs for customization if needed.
php artisan ddd:install
In production, run ddd:cache
during the deployment process to optimize autoloading.
php artisan ddd:cache
Laravel | LaravelDDD | |
---|---|---|
9.x - 10.24.x | 0.x | 0.x README |
10.25.x | 1.x | |
11.x | 1.x |
See UPGRADING for more details about upgrading from 0.x.
All domain generator commands use the following syntax:
# Specifying the domain as an option
php artisan ddd:{object} {name} --domain={domain}
# Specifying the domain as part of the name (short-hand syntax)
php artisan ddd:{object} {domain}:{name}
# Not specifying the domain at all, which will then
# prompt for it (with auto-completion)
php artisan ddd:{object} {name}
The following generators are currently available, shown using short-hand syntax:
# Generate a domain model
php artisan ddd:model Invoicing:Invoice
# Generate a domain model with factory
php artisan ddd:model Invoicing:Invoice -f
php artisan ddd:model Invoicing:Invoice --factory
# Generate a domain factory
php artisan ddd:factory Invoicing:InvoiceFactory
php artisan ddd:factory Invoicing:InvoiceFactory --model=Invoice # optionally specifying the model
# Generate a data transfer object
php artisan ddd:dto Invoicing:LineItemPayload
# Generates a value object
php artisan ddd:value Shared:DollarAmount
# Generates a view model
php artisan ddd:view-model Invoicing:ShowInvoiceViewModel
# Generates an action
php artisan ddd:action Invoicing:SendInvoiceToCustomer
# Extended Commands
# These extend Laravel's respective make:* commands and places the objects into the domain layer
php artisan ddd:cast Invoicing:MoneyCast
php artisan ddd:channel Invoicing:InvoiceChannel
php artisan ddd:command Invoicing:InvoiceDeliver
php artisan ddd:event Invoicing:PaymentWasReceived
php artisan ddd:exception Invoicing:InvoiceNotFoundException
php artisan ddd:job Invoicing:GenerateInvoicePdf
php artisan ddd:listener Invoicing:HandlePaymentReceived
php artisan ddd:mail Invoicing:OverduePaymentReminderEmail
php artisan ddd:notification Invoicing:YourPaymentWasReceived
php artisan ddd:observer Invoicing:InvoiceObserver
php artisan ddd:policy Invoicing:InvoicePolicy
php artisan ddd:provider Invoicing:InvoiceServiceProvider
php artisan ddd:resource Invoicing:InvoiceResource
php artisan ddd:rule Invoicing:ValidPaymentMethod
php artisan ddd:scope Invoicing:ArchivedInvoicesScope
# Laravel 11+ only
php artisan ddd:class Invoicing:Support/InvoiceBuilder
php artisan ddd:enum Customer:CustomerType
php artisan ddd:interface Customer:Contracts/Invoiceable
php artisan ddd:trait Customer:Concerns/HasInvoices
Generated objects will be placed in the appropriate domain namespace as specified by ddd.namespaces.*
in the config file.
# Show a summary of current domains in the domain folder
php artisan ddd:list
# Cache domain manifests (used for autoloading)
php artisan ddd:cache
# Clear the domain cache
php artisan ddd:clear
For any ddd:*
generator command, nested objects can be specified with forward slashes.
php artisan ddd:model Invoicing:Payment/Transaction
# -> Domain\Invoicing\Models\Payment\Transaction
php artisan ddd:action Invoicing:Payment/ProcessTransaction
# -> Domain\Invoicing\Actions\Payment\ProcessTransaction
php artisan ddd:exception Invoicing:Payment/PaymentFailedException
# -> Domain\Invoicing\Exceptions\Payment\PaymentFailedException
This is essential for objects without a fixed namespace such as class
, interface
, trait
,
each of which have a blank namespace by default. In other words, these objects originate
from the root of the domain.
php artisan ddd:class Invoicing:Support/InvoiceBuilder
# -> Domain\Invoicing\Support\InvoiceBuilder
php artisan ddd:interface Invoicing:Contracts/PayableByCreditCard
# -> Domain\Invoicing\Contracts\PayableByCreditCard
php artisan ddd:interface Invoicing:Models/Concerns/HasLineItems
# -> Domain\Invoicing\Models\Concerns\HasLineItems
If for some reason you need to generate a domain object under a namespace different to what is configured in ddd.namespaces.*
,
you may do so using an absolute name starting with /
. This will generate the object from the root of the domain.
# The usual: generate a provider in the configured provider namespace
php artisan ddd:provider Invoicing:InvoiceServiceProvider
# -> Domain\Invoicing\Providers\InvoiceServiceProvider
# Override the configured namespace at runtime
php artisan ddd:provider Invoicing:/InvoiceServiceProvider
# -> Domain\Invoicing\InvoiceServiceProvider
# Generate an event inside the Models namespace (hypothetical)
php artisan ddd:event Invoicing:/Models/EventDoesNotBelongHere
# -> Domain\Invoicing\Models\EventDoesNotBelongHere
# Deep nesting is supported
php artisan ddd:exception Invoicing:/Models/Exceptions/InvoiceNotFoundException
# -> Domain\Invoicing\Models\Exceptions\InvoiceNotFoundException
Subdomains can be specified with dot notation wherever a domain option is accepted.
# Domain/Reporting/Internal/ViewModels/MonthlyInvoicesReportViewModel
php artisan ddd:view-model Reporting.Internal:MonthlyInvoicesReportViewModel
# Domain/Reporting/Customer/ViewModels/MonthlyInvoicesReportViewModel
php artisan ddd:view-model Reporting.Customer:MonthlyInvoicesReportViewModel
# (supported by all commands where a domain option is accepted)
This package ships with opinionated (but sensible) configuration defaults. You may customize by publishing the config file and generator stubs as needed:
php artisan vendor:publish --tag="ddd-config"
php artisan vendor:publish --tag="ddd-stubs"
Note that the extended commands do not publish ddd-specific stubs, and inherit the respective application-level stubs published by Laravel.
Autoloading behaviour can be configured with the ddd.autoload
configuration option. By default, domain providers, commands, policies, and factories are auto-discovered and registered.
'autoload' => [
'providers' => true,
'commands' => true,
'policies' => true,
'factories' => true,
],
When ddd.autoload.providers
is enabled, any class within the domain layer extending Illuminate\Support\ServiceProvider
will be auto-registered as a service provider.
When ddd.autoload.commands
is enabled, any class within the domain layer extending Illuminate\Console\Command
will be auto-registered as a command when running in console.
When ddd.autoload.policies
is enabled, the package will register a custom policy discovery callback to resolve policy names for domain models, and fallback to Laravel's default for all other cases. If your application implements its own policy discovery using Gate::guessPolicyNamesUsing()
, you should set ddd.autoload.policies
to false
to ensure it is not overridden.
When ddd.autoload.factories
is enabled, the package will register a custom factory discovery callback to resolve factory names for domain models, and fallback to Laravel's default for all other cases. Note that this does not affect domain models using the Lunarstorm\LaravelDDD\Factories\HasDomainFactory
trait. Where this is useful is with regular models in the domain layer that use the standard Illuminate\Database\Eloquent\Factories\HasFactory
trait.
If your application implements its own factory discovery using Factory::guessFactoryNamesUsing()
, you should set ddd.autoload.factories
to false
to ensure it is not overridden.
To specify folders or paths that should be skipped during autoloading discovery, add them to the ddd.autoload_ignore
configuration option. By default, the Tests
and Migrations
folders are ignored.
'autoload_ignore' => [
'Tests',
'Database/Migrations',
],
Paths specified here are relative to the root of each domain. e.g., src/Domain/Invoicing/{path-to-ignore}
. If more advanced filtering is needed, a callback can be registered using DDD::filterAutoloadPathsUsing(callback $filter)
in your AppServiceProvider's boot method:
use Lunarstorm\LaravelDDD\Facades\DDD;
use Symfony\Component\Finder\SplFileInfo;
DDD::filterAutoloadPathsUsing(function (SplFileInfo $file) {
if (basename($file->getRelativePathname()) === 'functions.php') {
return false;
}
});
The filter callback is based on Symfony's Finder Component.
You may disable autoloading by setting the respective autoload options to false
in the configuration file as needed, or by commenting out the autoload configuration entirely.
// 'autoload' => [
// 'providers' => true,
// 'commands' => true,
// 'policies' => true,
// 'factories' => true,
// ],
In production, you should cache the autoload manifests using the ddd:cache
command as part of your application's deployment process. This will speed up the auto-discovery and registration of domain providers and commands. The ddd:clear
command may be used to clear the cache if needed.
This is the content of the published config file (ddd.php
):