Skip to content

Commit 415fc23

Browse files
committed
Update Dependencies; minor fixes
1 parent 8c40307 commit 415fc23

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
"require": {
2222
"php": ">=7.4",
2323
"ext-json": "*",
24-
"avadim/fast-excel-writer": "^4.3",
25-
"avadim/fast-excel-reader": "^2.7",
24+
"avadim/fast-excel-writer": "^4.4",
25+
"avadim/fast-excel-reader": "^2.8",
2626
"illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0",
2727
"illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0"
2828
},

tests/FastExcelLaravelTest.php

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -401,6 +401,12 @@ public function testExportImport()
401401
];
402402
})->importModel(FakeModel::class);
403403
$this->assertEquals($data, FakeModel::storageArray());
404+
}
405+
406+
public function testExportImportHead()
407+
{
408+
$data = $this->getDataArray();
409+
$testFileName = __DIR__ . '/test_io.xlsx';
404410

405411
// ** 3 ** export/import with heading
406412
$excel = $this->startExportTest($testFileName);

0 commit comments

Comments
 (0)