-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
36 lines (35 loc) · 966 Bytes
/
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
{
"name": "gamringer/php-json-patch",
"description": "PHP JSON Patch (RFC6902) implementation",
"keywords": ["json", "json patch", "RFC6902", "6902"],
"homepage": "https://github.com/gamringer/JSONPatch",
"license": "MIT",
"authors": [
{
"name": "Guillaume Amringer",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4",
"gamringer/php-json-pointer": "~3.1"
},
"require-dev": {
"phpunit/phpunit" : "@stable",
"pdepend/pdepend" : "@stable",
"squizlabs/php_codesniffer": "@stable",
"phpmd/phpmd" : "@stable",
"sebastian/phpcpd" : "@stable"
},
"autoload": {
"psr-4": {
"gamringer\\JSONPatch\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"gamringer\\JSONPatch\\Test\\": "tests/",
"gamringer\\JSONPatch\\Example\\": "examples/"
}
}
}