You are here

function phpexcel_libraries_info in PHPExcel 7.3

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

Implements hook_libraries_info().

File

./phpexcel.module, line 42
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 callback' => 'phpexcel_get_library_version',
      'path' => 'Classes',
      'files' => array(
        'php' => array(
          'PHPExcel.php',
        ),
      ),
    ),
  );
}