function feeds_jsonpath_parser_libraries_info in Feeds JSONPath Parser 7
Implements hook_libraries_info().
File
- ./
feeds_jsonpath_parser.module, line 39
Code
function feeds_jsonpath_parser_libraries_info() {
$libraries = array();
$libraries['jsonpath'] = array(
'name' => 'JSONPath',
'vendor url' => 'https://github.com/FlowCommunications/JSONPath',
'download url' => 'https://github.com/FlowCommunications/JSONPath/archive/' . FEEDS_JSONPATH_PARSER_LIBRARY_VERSION . '.tar.gz',
'version' => FEEDS_JSONPATH_PARSER_LIBRARY_VERSION,
'xautoload' => '_feeds_jsonpath_parser_xautoload_callback',
);
return $libraries;
}