-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
71 lines (71 loc) · 1.63 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
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
71
{
"name": "remorhaz/php-json-patch",
"description": "JSON Patch (RFC-6902) PHP implementation",
"keywords": [
"json",
"json patch",
"RFC6902"
],
"homepage": "https://github.com/remorhaz/php-json-patch",
"license": "MIT",
"authors": [
{
"name": "Edward Surov",
"email": "zoohie@gmail.com",
"role": "Developer"
}
],
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
"ext-intl": "*",
"remorhaz/php-json-data": "^0.7",
"remorhaz/php-json-pointer": "^0.7.1"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.8.2",
"phpunit/phpunit": "^10.1 || ^11"
},
"autoload": {
"psr-4": {
"Remorhaz\\JSON\\Patch\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Remorhaz\\JSON\\Patch\\Test\\": "tests/"
}
},
"scripts": {
"post-update-cmd": ["@phive-install"],
"post-install-cmd": ["@phive-install"],
"phive-install": [
"`if [ -f tools/phive ]; then echo 'tools/'; fi`phive install --trust-gpg-keys C5095986493B4AA0"
],
"test-cs": [
"vendor-bin/cs/vendor/bin/phpcs -sp"
],
"test-unit": [
"vendor/bin/phpunit --coverage-xml=build/logs/coverage-xml --log-junit=build/logs/junit.xml"
],
"test": [
"@test-cs",
"@test-unit"
],
"infection": [
"@test-unit",
"mkdir -p build/logs/infection",
"tools/infection --threads=4 --coverage=build/logs --no-progress --skip-initial-tests"
]
},
"config": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true
}
},
"extra": {
"bamarni-bin": {
"bin-links": false,
"forward-command": true
}
}
}