composer.json
{
"name": "blancks/fast-jsonpatch-php",
"description": "Class designed to efficiently handle JSON Patch operations in accordance with the RFC 6902 specification",
"keywords": ["php","json", "json patch"],
"homepage": "https://github.com/blancks/fast-jsonpatch-php",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Salvatore Rotondo",
"email": "s.rotondo90@gmail.com"
}
],
"support": {
"issues": "https://github.com/blancks/fast-jsonpatch-php/issues"
},
"autoload": {
"psr-4": {
"blancks\\JsonPatch\\": "src",
"blancks\\JsonPatchTest\\": "tests"
}
},
"require": {
"php": ">=8.1"
},
"require-dev": {
"phpunit/phpunit": "^10",
"phpstan/phpstan": "^1.11",
"lkrms/pretty-php": "^0.4.72"
},
"scripts": {
"test": "phpunit",
"static-analyse": "phpstan analyse --configuration phpstan.neon.dist",
"pretty-php": "pretty-php src tests"
}
}