gsilva18/laravel-dol-commands

Artisan commands to Laravel apps that utilizes Domain Oriented Laravel.

Installs: 7

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/gsilva18/laravel-dol-commands

v1.0.0 2021-10-02 02:17 UTC

This package is auto-updated.

Last update: 2025-12-29 03:27:06 UTC


README

It is heavily inspired by the DDD approach mentioned in this great article by Brent from Spatie. And with review code from (signifly/laravel-domain-commands)

Basic Usage

The package comes with a handful of commands out of the box.

Actions

Generate a new Action using the dol:action command:

php artisan dol:action CreateUserAction -d User

Controller

Generate a new Controller using the dol:controller command:

php artisan dol:controller UserController -d User -a Api (application dentro de exp: src/App/Api)

Publish config

php artisan vendor:publish --tag="dol-commands-config"