Перевод на доменную архитектуру
This commit is contained in:
@@ -128,7 +128,7 @@ return [
|
||||
'enclosure' => '"',
|
||||
'escape_character' => '\\',
|
||||
'contiguous' => false,
|
||||
'input_encoding' => Csv::GUESS_ENCODING,
|
||||
'input_encoding' => class_exists(Csv::class) ? Csv::GUESS_ENCODING : 'UTF-8',
|
||||
],
|
||||
|
||||
/*
|
||||
@@ -178,21 +178,21 @@ return [
|
||||
|
|
||||
*/
|
||||
'extension_detector' => [
|
||||
'xlsx' => Excel::XLSX,
|
||||
'xlsm' => Excel::XLSX,
|
||||
'xltx' => Excel::XLSX,
|
||||
'xltm' => Excel::XLSX,
|
||||
'xls' => Excel::XLS,
|
||||
'xlt' => Excel::XLS,
|
||||
'ods' => Excel::ODS,
|
||||
'ots' => Excel::ODS,
|
||||
'slk' => Excel::SLK,
|
||||
'xml' => Excel::XML,
|
||||
'gnumeric' => Excel::GNUMERIC,
|
||||
'htm' => Excel::HTML,
|
||||
'html' => Excel::HTML,
|
||||
'csv' => Excel::CSV,
|
||||
'tsv' => Excel::TSV,
|
||||
'xlsx' => 'Xlsx',
|
||||
'xlsm' => 'Xlsx',
|
||||
'xltx' => 'Xlsx',
|
||||
'xltm' => 'Xlsx',
|
||||
'xls' => 'Xls',
|
||||
'xlt' => 'Xls',
|
||||
'ods' => 'Ods',
|
||||
'ots' => 'Ods',
|
||||
'slk' => 'Slk',
|
||||
'xml' => 'Xml',
|
||||
'gnumeric' => 'Gnumeric',
|
||||
'htm' => 'Html',
|
||||
'html' => 'Html',
|
||||
'csv' => 'Csv',
|
||||
'tsv' => 'Csv',
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
@@ -203,7 +203,7 @@ return [
|
||||
| Available options: Excel::MPDF | Excel::TCPDF | Excel::DOMPDF
|
||||
|
|
||||
*/
|
||||
'pdf' => Excel::DOMPDF,
|
||||
'pdf' => 'Dompdf',
|
||||
],
|
||||
|
||||
/*
|
||||
|
||||
Reference in New Issue
Block a user