You are here

function phpexcel_libraries_info in PHPExcel 8.3

Same name and namespace in other branches
  1. 7.3 phpexcel.module \phpexcel_libraries_info()

Implements hook_libraries_info().

File

./phpexcel.module, line 45
The module file.

Code

function phpexcel_libraries_info() {
  return array(
    'PHPExcel' => array(
      'name' => 'PHPExcel',
      'vendor url' => 'http://phpexcel.codeplex.com/',
      'download url' => 'https://github.com/PHPOffice/PHPExcel',
      'version arguments' => array(
        'file' => 'changelog.txt',
        'pattern' => "/(\\d{4}-\\d{2}-\\d{2}\\s+\\(v([0-9\\.]+)|@version\\s+([0-9\\.]+))/",
        'lines' => 300,
      ),
      'path' => 'Classes',
      'files' => array(
        'php' => array(
          'PHPExcel.php',
        ),
      ),
    ),
  );
}