34 lines
819 B
JSON
34 lines
819 B
JSON
{
|
|
"name": "galbar/jsonpath",
|
|
"description": "JSONPath implementation for querying and updating JSON objects",
|
|
"type": "library",
|
|
"keywords": ["jsonpath", "json", "path"],
|
|
"license": "Apache-2.0",
|
|
"authors": [
|
|
{
|
|
"name": "Alessio Linares",
|
|
"email": "alessio@alessio.cc",
|
|
"role": "Software Engineer"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": ">=5.4"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "~4.0",
|
|
"sami/sami": ">=3.3.0",
|
|
"satooshi/php-coveralls": ">=1.0.1"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"JsonPath\\": "src/Galbar/JsonPath",
|
|
"Utilities\\": "src/Galbar/Utilities"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Tests\\": "tests/Galbar/"
|
|
}
|
|
}
|
|
}
|