You are here

function feeds_youtube_libraries_info in Feeds: YouTube Parser 7.3

Implements hook_libraries_info().

File

./feeds_youtube.module, line 90
Adds a YouTube feed processor to the Feeds module.

Code

function feeds_youtube_libraries_info() {
  $libraries['google-api-php-client'] = array(
    'name' => 'Google API',
    'vendor url' => 'http://developers.google.com',
    'download url' => 'https://github.com/google/google-api-php-client',
    'version' => '1.1.3',
    'files' => array(
      'php' => array(
        'src/Google/autoload.php',
      ),
    ),
    'versions' => array(
      '1.1.3' => array(
        'files' => array(
          'php' => array(
            'src/Google/autoload.php',
          ),
        ),
      ),
    ),
    'version arguments' => array(
      'file' => 'src/Google/Client.php',
      'pattern' => '@LIBVER\\s+([0-9\\.]+)@',
      'lines' => 29,
      'cols' => 9,
    ),
  );
  return $libraries;
}