surpaimb / laravel-quick
agile development
1.0.2
2023-02-24 09:03 UTC
Requires
- php: >=7.1.0
- laravel/framework: ~5.5|~6.0|~7.0|~8.0|~9.0
This package is auto-updated.
Last update: 2024-12-24 14:41:56 UTC
README
laravel-quick 封装了一些我们开发中常见的工具,使开发变得更高效
安装
-
composer require yxx/laravel-quick
-
生成翻译好的中文包命令
linux 和 mac
php artisan vendor:publish--provider="Surpaimb\\LaravelQuick\\LaravelQuickServiceProvider"
windowsphp artisan vendor:publish --provider="Surpaimb\LaravelQuick\LaravelQuickServiceProvider"
怎么使用
// api 返回状态码
// 异常使用例子
use Surpaimb\LaravelQuick\Exceptions\Api\ApiNotFoundException;
// 请求参数错误
throw new ApiRequestException();
// 404 未找到
throw new ApiNotFoundException();
// 系统错误
throw new ApiSystemException()
// 未授权
throw new ApiUnAuthException()
// 返回
//自定义错误继承Yxx\LaravelQuick\Exceptions自己参照对应代码自定义
// api接口使用
use Surpaimb\LaravelQuick\Traits\JsonResponseTrait
// 成功
return $this->success("消息",['name'=>"张三"]);
// 失败
return $this->error("错误");
// 自定义
return $this->apiResponse(Response::HTTP_BAD_GATEWAY,"502错误");
// 缓存的使用(封装了redis的一些方法)
use Surpaimb\LaravelQuick\Facades\CacheClient;
CacheClient::hSet("test","1","张三");
CacheClient::hGet("test","1");
CacheClient::lPush("test","1");
具体参考Yxx\LaravelQuick\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