sockstack / laragen
There is no license information available for the latest version (1.0) of this package.
1.0
2021-06-26 10:14 UTC
Requires
- sockstack/repository: ^1.0
- sockstack/service: ^1.0
This package is auto-updated.
Last update: 2024-12-20 15:18:02 UTC
README
在使用 laravel 的时候,被 laravel 强大所震撼,在开发 laravel 项目的是经常会用到 artisan 命令,真的怎么用怎么丝滑,特别是创建 Controller 或者 Model 的时候,实在太方便了,但是在公司中,经常会遇到的问题就是,项目会抽象出 Service、 Repository 层等等,有没有办法可以像 artisan 命令一样丝滑的创建呢?于是就开发了该 Composer 扩展包。
安装
composer require sockstack/laragen --dev
使用
# 创建 service php artisan make:service {name} # 创建 repository php artisan make:repository {name}
- 案例一
php artisan make:repository UserRepository
在 app/Repositories
目录下生成 UserRepository.php
的文件,内容如下:
<?php namespace App\Repositories; class UserRepository { public function __construct() { parent::__construct(); } }
- 案例二
php artisan make:repository User/UserRepository
在 app/Repositories/User
目录下生成 UserRepository.php
的文件,内容如下:
<?php namespace App\Repositories\User; class UserRepository { public function __construct() { parent::__construct(); } }
- 案例三
php artisan make:service UserService
在 app/Services
目录下生成 UserService.php
的文件,内容如下:
<?php namespace App\Services; class UserService { public function __construct() { parent::__construct(); } }
- 案例四
php artisan make:service User/UserService
在 app/Services/User
目录下生成 UserService.php
的文件,内容如下:
<?php namespace App\Services\User; class UserService { public function __construct() { parent::__construct(); } }