You are here

function s3fs_libraries_info in S3 File System 7.3

Same name and namespace in other branches
  1. 7 s3fs.module \s3fs_libraries_info()
  2. 7.2 s3fs.module \s3fs_libraries_info()

Implements hook_libraries_info().

File

./s3fs.module, line 69
Hook implementations and other primary functionality for S3 File System.

Code

function s3fs_libraries_info() {
  return array(
    'awssdk' => array(
      'title' => 'AWS SDK for PHP',
      'vendor url' => 'http://docs.aws.amazon.com/aws-sdk-php/guide/latest/index.html',
      'download url' => 'https://github.com/aws/aws-sdk-php/releases',
      'version arguments' => array(
        'file' => 'Aws/Sdk.php',
        'pattern' => "/const VERSION = '(.*)';/",
        'lines' => 500,
      ),
      'files' => array(
        'php' => array(
          'aws-autoloader.php',
        ),
      ),
    ),
  );
}