You are here

function agenda_libraries_info in Agenda 7.2

Implements hook_libraries_info().

File

./agenda.module, line 115

Code

function agenda_libraries_info() {
  $libraries['google-api-php-client'] = array(
    'name' => 'Google API Client Library for PHP',
    'vendor url' => 'https://github.com/google/google-api-php-client',
    'download url' => 'https://github.com/google/google-api-php-client/archive/1.1.2.zip',
    'version arguments' => array(
      'file' => 'src/Google/Client.php',
      'pattern' => '/LIBVER = "([0-9\\.a-z]+)/',
      'lines' => 29,
    ),
    'versions' => array(
      AGENDA_MIN_API_VERSION => array(),
    ),
    'files' => array(
      'php' => array(
        'src/Google/Client.php',
      ),
    ),
  );
  return $libraries;
}