cooper/laravel-custom-make-command

custom laravel make commands for dev.

v0.0.1 2023-02-20 01:34 UTC

This package is auto-updated.

Last update: 2024-04-27 09:22:59 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.