-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1.31 KB
/
Copy pathcomposer.json
File metadata and controls
48 lines (48 loc) · 1.31 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
{
"name": "bumpcore/json-patch",
"description": "RFC 6902 JSON Patch and RFC 7396 JSON Merge Patch implementation for PHP.",
"type": "library",
"license": "MIT",
"keywords": [
"json",
"json-merge-patch",
"json-patch",
"json-pointer"
],
"authors": [
{
"name": "Abdulkadir Cemiloglu",
"email": "kadir.cemiloglu1@gmail.com",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"BumpCore\\JsonPatch\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"BumpCore\\JsonPatch\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.3"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.75",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-strict-rules": "^2.0",
"phpunit/phpunit": "^12.0"
},
"scripts": {
"analyse": "phpstan analyse --debug --memory-limit=1G",
"test": "phpunit",
"test:coverage": "@php scripts/run-coverage.php",
"cs": "php-cs-fixer fix --config=.php-cs-fixer.dist.php --diff --verbose --sequential",
"cs:check": "php-cs-fixer fix --config=.php-cs-fixer.dist.php --diff --dry-run --verbose --sequential"
},
"config": {
"sort-packages": true
}
}