-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
36 lines (36 loc) · 1.03 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"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": "[email protected]"
}
],
"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"
}
}