mckenziearts/laravel-command
Dev-only Artisan generators for Laravel: quickly scaffold templated repositories, helpers, and observers. Adds make:repository and related commands to create boilerplate files, with configurable model namespaces for non-standard app structures.
App/Repositories/, App/Observers/), improving onboarding and maintainability for mid-to-large Laravel projects.php artisan generate:report).App/Helpers/.Adopt if:
App/Repositories/).Look elsewhere if:
App\Models/; custom namespaces require manual overrides.For Executives:
"This package cuts 30–50% of the time spent writing boilerplate for Laravel models. For example, generating a repository, observer, and helper for a new User model—tasks that take 15+ minutes manually—now takes under a minute. It’s a no-code tool for developers, reducing busywork so they can focus on business logic. Low risk: it’s open-source, Laravel-native, and maintained by the community."
For Engineering: *"Pros:
php artisan make:repository User creates a full repository class with dependency injection.creating(), updated(), etc., methods for event-driven logic.MediaHelper for image processing).Cons:
App\Models\; custom namespaces need manual fixes.Use Case: Replace our manual make:model --migration + hand-written repository process with this. Example:
php artisan make:repository User # Repository
php artisan make:observer User # Observer
php artisan make:helper Media # Helper
For PMs: *"Prioritize this if:
Alternatives:
Next Steps:
CONTRIBUTING.md section for customizing generated files.How can I help you explore Laravel packages today?