function feeds_excel_libraries_info in Feeds Excel 7.2
Implements hook_libraries_info().
File
- ./
feeds_excel.module, line 29 - The main file of the feeds_excel module.
Code
function feeds_excel_libraries_info() {
$libraries = array();
$libraries['PHPExcel'] = array(
'name' => 'PHPExcel',
'vendor url' => 'https://github.com/PHPOffice/PHPExcel',
'download url' => 'https://github.com/PHPOffice/PHPExcel/archive/1.8.zip',
'path' => 'Classes',
'files' => array(
'php' => array(
'PHPExcel.php',
'PHPExcel/IOFactory.php',
),
),
'version arguments' => array(
'file' => 'install.txt',
'pattern' => '@version\\s+([0-9a-zA-Z\\.-]+)@',
'lines' => 22,
),
);
return $libraries;
}