forked from gamringer/JSONPointer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
35 lines (34 loc) · 934 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
{
"name": "gamringer/php-json-pointer",
"description": "PHP JSON Pointer (RFC6901) implementation",
"keywords": ["json", "json pointer", "RFC6901", "6901"],
"homepage": "https://github.com/gamringer/JSONPointer",
"license": "MIT",
"authors": [
{
"name": "Guillaume Amringer",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.0"
},
"require-dev": {
"phpunit/phpunit" : "@stable",
"pdepend/pdepend" : "@stable",
"squizlabs/php_codesniffer": "@stable",
"phpmd/phpmd" : "@stable",
"sebastian/phpcpd" : "@stable"
},
"autoload": {
"psr-4": {
"gamringer\\JSONPointer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"gamringer\\JSONPointer\\Test\\": "tests/",
"gamringer\\JSONPointer\\Example\\": "examples/"
}
}
}