You are here

function feeds_ex_libraries_info in Feeds extensible parsers 7

Implements hook_libraries_info().

File

./feeds_ex.module, line 77
A Feeds framework used to create extensible parsers.

Code

function feeds_ex_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_EX_JSONPATH_LIBRARY_VERSION . '.tar.gz',
    'version' => FEEDS_EX_JSONPATH_LIBRARY_VERSION,
    'xautoload' => '_feeds_ex_xautoload_callback',
  );
  return $libraries;
}