You are here

function sendinblue_libraries_info in SendinBlue 7.2

Implements hook_libraries_info().

File

./sendinblue.module, line 31
The entry point of Sendinblue module.

Code

function sendinblue_libraries_info() {
  $libraries['sendinblue'] = array(
    'name' => 'SendInBlue API',
    'vendor url' => 'https://github.com/sendinblue/APIv3-php-library',
    'download url' => 'https://github.com/sendinblue/APIv3-php-library/archive/refs/tags/v7.4.0.zip',
    'version' => '7.4.0',
    // Path to the 'autoload.php' created by Composer.
    'path' => 'vendor',
    'files' => array(
      'php' => array(
        'autoload.php',
      ),
    ),
  );
  return $libraries;
}