https://github.com/myxiaoao/laravel-custom-make-command
https://github.com/myxiaoao/laravel-custom-make-command
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/myxiaoao/laravel-custom-make-command
- Owner: myxiaoao
- License: mit
- Created: 2023-02-20T01:33:37.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-02-27T07:00:13.000Z (over 2 years ago)
- Last Synced: 2025-01-16T00:56:48.340Z (5 months ago)
- Language: PHP
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Laravel Custom Make Command
custom laravel make commands for dev.
## Requirements
- PHP 8.0 or higher
- Laravel 9.0 or higher## Installation
```bash
composer require cooper/laravel-custom-make-command --dev
```## Usage
> **Note**
> Support for sub-folders.* make:service
```php
php artisan make:service demo// Service [app/Services/DemoService.php] created successfully.
```* make:repository
```php
php artisan make:repository demo// Repository [app/Repositories/DemoRepository.php] created successfully.
```* make:action
```php
php artisan make:action demo// Action [app/Actions/DemoAction.php] created successfully..
```* make:dao
```php
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](LICENSE.md).