struktal/struktal-api
最新稳定版本:1.0.0
Composer 安装命令:
composer require struktal/struktal-api
包简介
PHP library for creating consistent JSON APIs
关键字:
README 文档
README
This is a PHP library for creating consistent JSON APIs
Installation
To install this library, include it in your project using Composer:
composer require struktal/struktal-api
Usage
You can send JSON responses using the methods in the struktal\API\API class.
For example, to send any JSON response, you can use API::sendJson:
\struktal\API\API::sendJson([ "field1" => "value1", "field2" => "value2" ]);
{
"field1": "value1",
"field2": "value2"
}
Alternatively, use the API::sendWrappedJson method to send a structured JSON response with a status code and message:
\struktal\API\API::sendWrappedJson([ "field1" => "value1", "field2" => "value2" ], \struktal\API\HTTPResponse::OK);
{
"code": 200,
"message": "Ok",
"data": {
"field1": "value1",
"field2": "value2"
}
}
License
This software is licensed under the MIT license. See the LICENSE file for more information.
统计信息
- 总下载量: 704
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2025-08-21