datakrama/lapires
Composer 安装命令:
composer require datakrama/lapires
包简介
Lapires - Laravel API Response, generalizing all response from your API server
README 文档
README
Lapires is simple Laravel package for generalizing all default response to API-friendly response. With this package, you will have a properly formatted JSON response. However, the response format is fixed, you can not change the format.
Requirements
Laravel Compatibility
| Laravel | Package |
|---|---|
| 6.x | 1.x |
| 7.x | 2.x |
| 8.x | 2.x |
Installation
$ composer require datakrama/lapires:"^2.0"
Config (Optional)
If you need to disable custom exception response from this package, publish the config file, and change exception option to false.
$ php artisan vendor:publish --provider="Datakrama\Lapires\LapiresServiceProvider"
Usages
All responses will be formatted as follows:
// Success response
{
"success": true,
"message": ...,
"data": {
...
}
}
// Error response
{
"success": false,
"message": ...,
"errors": {
...
}
}
General
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use Datakrama\Lapires\Traits\ApiResponser;
class HomeController extends Controller
{
use ApiResponser;
/**
* Create a new controller instance.
*
* @return void
*/
public function __construct()
{
$this->middleware('auth');
}
/**
* Show the application dashboard.
*
* @return \Illuminate\Contracts\Support\Renderable
*/
public function index()
{
return view('home');
}
/**
* Success response
*
* @return void
*/
public function success()
{
$data = ['foo' => 'bar'];
$message = 'This is example success response.';
$code = 200;
return $this->successResponse($data, $message, $code);
}
/**
* Error response
*
* @return void
*/
public function error()
{
$code = 500;
$message = 'This is example error response.';
$errors = ['foo' => 'bar'];
return $this->successResponse($code, $message, $errors);
}
}
Thanks
This package is made because inspiration from https://github.com/Cerwyn/laravel-generalizing-response.
Licence
The MIT License (MIT). Please see License File for more information.
datakrama/lapires 适用场景与选型建议
datakrama/lapires 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 3.05k 次下载、GitHub Stars 达 1, 最近一次更新时间为 2020 年 06 月 07 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 datakrama/lapires 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 datakrama/lapires 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 3.05k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 6
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2020-06-07