Seeder is a TYPO3 Extension that generates fake data for your TYPO3 Extension. Its intended for developers only!!! This Version is an experimental version!
The recommended way to install seeder is by using composer.
- Get seeder by running
composer require tildbj/seeder
- Activate seeder in your Extension Manager
Faker requires fzaninotto/faker. If you install seeder via Extensionmanager it's up to you to install fzaninotto/faker yourself.
/path/to/typo3/cli_dispatch.phpsh extbase seeder:make --class-name=Example --table-name=tx_myextension_domain_model_mymodel
You can find your generated seed at: Classes/Seeder/Example.php Feel free to customize it to your wishes. (A possiblity to configure the path is coming soon!!!)
/path/to/typo3/cli_dispatch.phpsh extbase seeder:seed --class-name=Example
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature
- Commit your changes:
git commit -am 'Add some feature'
- Push to the branch:
git push origin my-new-feature
- Submit a pull request :D
0.1.2 | Add TYPO3 8.7 support |
0.1.1 | Skip start and enddate because usually we don't want to test a typo3 core feature so each record will be available in frontend |
0.1.0 | First experimental release |
Seeder is released under GNU General Public License, version 3 or later. See the bundled LICENSE file for details.