-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
70 lines (70 loc) · 1.7 KB
/
composer.json
File metadata and controls
70 lines (70 loc) · 1.7 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "alto/json-patch",
"description": "A PHP JSON-Patch library based on RFC 6902 for generating smart diffs, applying patches, and rebuilding data structures.",
"license": "MIT",
"type": "library",
"keywords": [
"json",
"patch",
"rfc6902",
"diff",
"audit",
"versioning",
"state",
"deterministic",
"change-tracking",
"json-diff"
],
"authors": [
{
"name": "Simon André",
"email": "smn.andre@gmail.com"
}
],
"homepage": "https://github.com/phpalto/json-patch",
"support": {
"issues": "https://github.com/phpalto/json-patch/issues",
"docs": "https://github.com/phpalto/json-patch#readme"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/smnandre"
}
],
"require": {
"php": "^8.3",
"ext-json": "*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^12.0"
},
"autoload": {
"psr-4": {
"Alto\\JsonPatch\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Alto\\JsonPatch\\Tests\\": "tests/"
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"scripts": {
"check": [
"@cs-check",
"@phpstan",
"@test"
],
"cs-check": "php-cs-fixer fix --dry-run --diff",
"cs-fix": "php-cs-fixer fix",
"phpstan": "phpstan analyse --level=10",
"test": "phpunit"
}
}