Closed timacdonald closed 7 months ago
To make a feature we currently use php artisan pennant:feature. This PR renames the command to: php artisan make:feature
php artisan pennant:feature
php artisan make:feature
This is the current state of the ecosystems' make-style commands:
make:folio pennant:feature dusk:make dusk:page dusk:component
make:folio
pennant:feature
dusk:make
dusk:page
dusk:component
After the change:
make:folio make:feature dusk:make dusk:page dusk:component
make:feature
The command has been aliased so artisan pennant:feature will continue to work.
artisan pennant:feature
Docs: https://github.com/laravel/docs/pull/9508
To make a feature we currently use
php artisan pennant:feature
. This PR renames the command to:php artisan make:feature
This is the current state of the ecosystems' make-style commands:
make:folio
pennant:feature
dusk:make
dusk:page
dusk:component
After the change:
make:folio
make:feature
dusk:make
dusk:page
dusk:component
The command has been aliased so
artisan pennant:feature
will continue to work.Docs: https://github.com/laravel/docs/pull/9508