h0gar / csv
Installs: 1 091
Dependents: 2
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
pkg:composer/h0gar/csv
This package is not auto-updated.
Last update: 2025-10-29 14:12:14 UTC
README
#Csv
A lightweight package creat csv files.
composer require h0gar/csv *
$csv = new \H0gar\Csv\Csv([
	'id',
	'firstname',
	'name'
]);
$content = [
	[
		1,
		'foo',
		'bar'
	],
	// ..
];
foreach($content as $row)
	$csv->add($row);
$result = $csv->render();
##Contributing
Please submit all issues and pull requests to the h0gar/csv repository.
##License
Open-sourced software licensed under the MIT license