-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathcomposer.json
executable file
·46 lines (46 loc) · 1.44 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
{
"name": "php-jsonpatch/php-jsonpatch",
"description": "Implementation of JSON Patch (http://tools.ietf.org/html/rfc6902)",
"keywords": ["json", "json patch", "json modification"],
"homepage": "https://github.com/raphaelstolt/php-jsonpatch",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Raphael Stolt",
"email": "[email protected]",
"homepage": "http://raphaelstolt.blogspot.com"
}
],
"support": {
"issues": "https://github.com/raphaelstolt/php-jsonpatch/issues"
},
"require": {
"php": ">=7.4",
"symfony/polyfill-mbstring": "^1.2",
"php-jsonpointer/php-jsonpointer": "^4.0"
},
"require-dev": {
"phpunit/phpunit": "8.*",
"friendsofphp/php-cs-fixer": "^3.0",
"phpstan/phpstan": "^1.6",
"stolt/lean-package-validator": "^3.0"
},
"autoload": {
"psr-0": {
"Rs\\Json": "src/"
}
},
"scripts": {
"test": "phpunit",
"cs-fix": "php-cs-fixer fix . -vv --allow-risky=yes || true",
"cs-lint": "php-cs-fixer fix --diff --stop-on-violation --verbose --allow-risky=yes --dry-run",
"static-analyse": "phpstan analyse --configuration phpstan.neon.dist",
"validate-gitattributes": "lean-package-validator validate"
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
}
}