Skip to content

Commit

Permalink
Update Dependencies; minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
aVadim483 committed Aug 29, 2023
1 parent 8c40307 commit 415fc23
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
"require": {
"php": ">=7.4",
"ext-json": "*",
"avadim/fast-excel-writer": "^4.3",
"avadim/fast-excel-reader": "^2.7",
"avadim/fast-excel-writer": "^4.4",
"avadim/fast-excel-reader": "^2.8",
"illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0",
"illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0"
},
Expand Down
6 changes: 6 additions & 0 deletions tests/FastExcelLaravelTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -401,6 +401,12 @@ public function testExportImport()
];
})->importModel(FakeModel::class);
$this->assertEquals($data, FakeModel::storageArray());
}

public function testExportImportHead()
{
$data = $this->getDataArray();
$testFileName = __DIR__ . '/test_io.xlsx';

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

0 comments on commit 415fc23

Please sign in to comment.