laravel / pennant

A simple, lightweight library for managing feature flags.
https://laravel.com/docs/pennant
MIT License
474 stars 48 forks source link

[1.x] Uses conventional "make" command naming #95

Closed timacdonald closed 5 months ago

timacdonald commented 6 months ago

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