Skip to content

Commit

Permalink
build(deps): bump league/csv from 9.17.0 to 9.18.0
Browse files Browse the repository at this point in the history
Bumps [league/csv](https://github.com/thephpleague/csv) from 9.17.0 to 9.18.0.
- [Release notes](https://github.com/thephpleague/csv/releases)
- [Changelog](https://github.com/thephpleague/csv/blob/master/CHANGELOG.md)
- [Commits](thephpleague/csv@9.17.0...9.18.0)

---
updated-dependencies:
- dependency-name: league/csv
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Nov 4, 2024
1 parent b244aca commit c306446
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"laminas/laminas-mail": "^2.25",
"laminas/laminas-mime": "^2.12",
"league/commonmark": "^2.5",
"league/csv": "^9.17",
"league/csv": "^9.18",
"league/html-to-markdown": "^5.1",
"league/oauth2-client": "^2.7",
"league/oauth2-google": "^4.0",
Expand Down
16 changes: 8 additions & 8 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/Glpi/Csv/CsvResponse.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,6 @@ public static function output(ExportToCsvInterface $export): void
$csv->setDelimiter($_SESSION["glpicsv_delimiter"] ?? ";");
$csv->insertOne($export->getFileHeader());
$csv->insertAll($export->getFileContent());
$csv->output($export->getFileName());
$csv->download($export->getFileName());
}
}

0 comments on commit c306446

Please sign in to comment.