cooper / laravel-custom-make-command
custom laravel make commands for dev.
Installs: 9
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/cooper/laravel-custom-make-command
Requires
- php: >=8.0
- laravel/framework: >=9.0
This package is auto-updated.
Last update: 2025-09-27 12:18:44 UTC
README
custom laravel make commands for dev.
Requirements
- PHP 8.0 or higher
- Laravel 9.0 or higher
Installation
composer require cooper/laravel-custom-make-command --dev
Usage
Note
Support for sub-folders.
- make:service
php artisan make:service demo
// Service [app/Services/DemoService.php] created successfully.
- make:repository
php artisan make:repository demo
// Repository [app/Repositories/DemoRepository.php] created successfully.
- make:action
php artisan make:action demo
// Action [app/Actions/DemoAction.php] created successfully..
- make:dao
php artisan make:dao demo
// DAO [app/DAOs/DemoDAO.php] created successfully.
License
Laravel Custom Make Command is open-sourced software licensed under the MIT license.