定制 browomir/standardized-json-response 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

browomir/standardized-json-response

最新稳定版本:1.0.0

Composer 安装命令:

composer require browomir/standardized-json-response

包简介

Simple class to prepare standardized JSON response based on JSend specification

README 文档

README

Simple class to prepare standardized JSON response based on JSend specification

Installation

The preferred way to install this class is through composer.

Either run

php composer.phar require browomir/standardized-json-response "dev-master"

or add

// composer.json
{
    "require": {
        "browomir/standardized-json-response": "dev-master"
    }
}

to the require section of your composer.json file.

Usage

This simple example show how you can use this class:

require_once 'vendor/autoload.php';

use StandardizedJsonResponse\Response;

$response = new Response();
$response->setStatus(Response::STATUS_SUCCESS);
$response->setData(
    array(
        'lorem' => 'ipsum'
    )
);
$response->setMessage('The message');

echo $response->getEncodedResponse();

Build Status Scrutinizer Code Quality Code Coverage Latest Stable Version Latest Unstable Version Dependency Status Total Downloads License

统计信息

  • 总下载量: 38
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2015-11-01