lindelius/php-json-patch
最新稳定版本:0.1.1
Composer 安装命令:
composer require lindelius/php-json-patch
包简介
A zero-dependency PHP implementation of JSON Patch
关键字:
README 文档
README
A zero-dependency PHP implementation of JSON Patch (RFC 6902).
Table of Contents
Requirements
- PHP 7.4, or higher
Installation
If you are using Composer, you may install the latest version of this library by running the following command from your project's root folder:
composer require lindelius/php-json-patch
You may also manually download the library by navigating to the "Releases" page and then expanding the "Assets" section of the latest release.
Usage
Given a set of JSON Patch operations...
[
{ "op": "test", "path": "/name", "value": "Anakin Skywalker" },
{ "op": "replace", "path": "/name", "value": "Darth Vader" },
{ "op": "add", "path": "/order", "value": "Sith" },
{ "op": "move", "from": "/friends", "path": "/foes" }
]
And a document...
{
"name": "Anakin Skywalker",
"friends": ["Obi-Wan Kenobi", "Ahsoka Tano"],
"order": "Jedi"
}
You can (atomically) apply the patches through one of the PatcherInterface methods...
// Option 1: Provide the raw JSON string $newDocument = $patcher->patchFromJson($documentAsArray, $operationsAsJson); // Option 2: Provide the JSON Patch operations in array format $newDocument = $patcher->patch($documentAsArray, $operationsAsArray);
And get a new document back :)
{
"name": "Darth Vader",
"foes": ["Obi-Wan Kenobi", "Ahsoka Tano"],
"order": "Sith"
}
Protected Paths
This library has built-in support for registering "protected paths", which are paths that may not be modified by any patch operation. Protected paths will indirectly also block modifications to their parent path(s) and any child paths.
$patcher->addProtectedPath("/id"); $patcher->addProtectedPath("/created_at"); $patcher->addProtectedPath("/some/nested/path");
Please note that "test" operations can still operate on a protected path since they are not actually modifying the document.
统计信息
- 总下载量: 5.7k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: Apache-2.0
- 更新时间: 2021-05-25