forked from raphaelstolt/php-jsonpatch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·41 lines (41 loc) · 1.1 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
{
"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": ">=5.4",
"symfony/polyfill-mbstring": "^1.1",
"php-jsonpointer/php-jsonpointer": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "4.6.*",
"friendsofphp/php-cs-fixer": "^1.11"
},
"autoload": {
"psr-0": {
"Rs\\Json": "src/"
}
},
"scripts": {
"test": "phpunit",
"cs-fix": "php-cs-fixer fix . -vv || true"
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
}
}