You are here

function real_aes_libraries_info in Real AES 7

Same name and namespace in other branches
  1. 7.2 real_aes.module \real_aes_libraries_info()

Implements hook_libraries_info().

File

./real_aes.module, line 10
Library loader for the Defuse PHP-encryption library.

Code

function real_aes_libraries_info() {
  return array(
    'php-encryption' => array(
      'name' => t('Defuse PHP-encryption'),
      'vendor_url' => 'https://github.com/defuse/php-encryption',
      'download_url' => 'https://github.com/defuse/php-encryption/archive/master.zip',
      'files' => array(
        'php' => array(
          'autoload.php',
        ),
      ),
      'version' => 'master',
    ),
  );
}