BA
Phinx Csv Seeder
Instalation
$ composer require backendtea/phinx-csv-seederRequirements
- PHP 5.6 or higher
- robmorgan/phinx version 0.8.1 or higher
Usage
Basic usage:
<?php
use BackEndTea\MigrationHelper\CsvSeeder;
class UserSeeder extends CsvSeeder
{
public function run()
{
$this->insertCsv('users', __DIR__ . '/users.csv');
}
}Will try and insert all csv records into the given table. The keys in the csv file are required
to match the keys in the database. Any values for a row not specified become their defaults.
On this page
Languages
PHP100.0%
MIT License
Created December 15, 2017
Updated October 10, 2023