reasonpun / laravel-quick-tools
敏捷开发
v0.0.3
2022-03-08 11:25 UTC
Requires
- php: >=7.1.0
- laravel/framework: ~5.5|~6.0|~7.0|~8.0|~9.0
README
laravel-quick-tools 封装了一些我们在开发中常用的工具,使开发更加高效,基于 youyingxiang/laravel-quick 开发,并适用于 Laravel 9.x 版本
安装
-
composer require reasonpun/laravel-quick-tools
-
生成翻译好的中文包命令
Linux 和 Mac
php artisan vendor:publish--provider="Reasonpun\\LaravelQuickTools\\LaravelQuickToolsServiceProvider"
Windowsphp artisan vendor:publish --provider="Reasonpun\LaravelQuickTools\LaravelQuickToolsServiceProvider"
使用方法
// api 返回状态码
// 异常使用例子
use Reasonpun\LaravelQuickTools\Exceptions\Api\ApiNotFoundException;
// 请求参数错误
throw new ApiRequestException();
// 404 未找到
throw new ApiNotFoundException();
// 系统错误
throw new ApiSystemException()
// 未授权
throw new ApiUnAuthException()
// 返回
//自定义错误继承Reasonpun\LaravelQuickTools\Exceptions自己参照对应代码自定义
// api接口使用
use Reasonpun\LaravelQuickTools\Traits\JsonResponseTrait
// 成功
return $this->success("消息",['name'=>"张三"]);
// 失败
return $this->error("错误");
// 自定义
return $this->apiResponse(Response::HTTP_BAD_GATEWAY,"502错误");
// 缓存的使用(封装了redis的一些方法)
use Reasonpun\LaravelQuickTools\Facades\CacheClient;
CacheClient::hSet("test","1","张三");
CacheClient::hGet("test","1");
CacheClient::lPush("test","1");
具体参考Reasonpun\LaravelQuickTools\Services\CacheService里面的方法....
artisan 命令
- 创建 Trait
php artisan quick:create-trait test
- 创建 Service
php artisan quick:create-service Test/TestService
- 创建 Repository
php artisan quick:create-repository Test