Lightweight library for creating CSV databases
Go to file
Arsen Mirzaev Tatyano-Muradovich 601bc2ed65 temp 2024-11-23 17:36:31 +07:00
mirzaev/csv/system move from mirzaev/repression 2024-11-23 09:50:05 +07:00
.gitignore move from mirzaev/repression 2024-11-23 09:50:05 +07:00
LICENSE move from mirzaev/repression 2024-11-23 09:50:05 +07:00
README.md temp 2024-11-23 17:36:31 +07:00
composer.json move from mirzaev/repression 2024-11-23 09:50:05 +07:00
composer.lock move from mirzaev/repression 2024-11-23 09:50:05 +07:00

Comma-Separated Values by RFC 4180

<?php

// Library for CSV
use mirzaev\csv\interfaces\csv as csv_trait,
  mirzaev\csv\interfaces\csv as csv_interface;

/**
 * Database
 *
 * @license http://www.wtfpl.net/ Do What The Fuck You Want To Public License
 */
class database extends core implements csv_interface
{
	use csv_trait, file {
		csv_trait::read insteadof file;
		file::read as protected file;
	}
}

database::write()
?>