| Package Data | |
|---|---|
| Maintainer Username: | howtomakeaturn |
| Maintainer Contact: | howtomakeaturn@hotmail.com (Chuan-Hao, You) |
| Package Create Date: | 2014-11-21 |
| Package Last Update: | 2014-12-21 |
| Language: | PHP |
| License: | MIT |
| Last Refreshed: | 2025-11-03 15:24:32 |
| Package Statistics | |
|---|---|
| Total Downloads: | 72 |
| Monthly Downloads: | 0 |
| Daily Downloads: | 0 |
| Total Stars: | 8 |
| Total Watchers: | 1 |
| Total Forks: | 0 |
| Total Open Issues: | 0 |
Help you dump database into CSV format, built on Laravel.
Dump a table and store it into a file
$dumper = new Howtomakeaturn\CSVDumper\CSVDumper($tableName);
$dumper->dumpAndStoreTable($folderPathToStore);
Get a CSV format string of a table
$dumper = new Howtomakeaturn\CSVDumper\CSVDumper($tableName);
$result = $dumper->dumpTable();
Using Composer:
$ composer require 'howtomakeaturn/csvdumper:1.0.0'
Or via json file:
"require": {
"howtomakeaturn/csvdumper": "1.0.0"
}