Download the PHP package sonrac/symfony-seed-command without Composer
On this page you can find all versions of the php package sonrac/symfony-seed-command. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download sonrac/symfony-seed-command
More information about sonrac/symfony-seed-command
Files in sonrac/symfony-seed-command
Package symfony-seed-command
Short Description Symfony simple seed command
License MIT
Informations about the package symfony-seed-command
Install
Introduction
The package is designed to fill the database with data bypassing migrations.
Usages for silex or symfony
Add to console application command sonrac\SeedCommand
, as example, for silex:
Create seed:
Seed class must be implement sonrac\SimpleSeed\SeedInterface
Predefined seed classes
sonrac\SimpleSeed\SimpleSeed
Simple seed for data insert. Define getTable
for table name and getData
for get data.
Insert would be run automatically
sonrac\SimpleSeed\SimpleSeedWithCheckExists
Seed with check exists inserted data before insert.
Define getTable
for table name and getData
for get data. Also, define getWhereForRow
which is where filter for select data
before insert
Insert would be run automatically
All versions of symfony-seed-command with dependencies
php Version >=7.2
symfony/console Version >=4.3
doctrine/dbal Version >=2.2.0