re-lounge / rl_db_import_export
4.1
2025-04-10 06:55 UTC
Requires
- php: >=8.2
- ext-json: *
- typo3/cms-core: ^12.4 || ^13.4
Requires (Dev)
- typo3/testing-framework: >=8.0.9
This package is auto-updated.
Last update: 2025-06-10 07:19:32 UTC
README
Database JSON Import / Export
This TYPO3 extension allows to export and import a database table in JSON format to a file.
Examples
Export all entries from the table tt_content
and write the data to ./
.
Each file contains 100
entries:
vendor/bin/typo3cms rl:database:export tt_content ./ 100
Import all data from ./
into the table tt_content
:
vendor/bin/typo3cms rl:database:import ./ tt_content
PHPUnit
Run all tests in Docker:
docker-compose up --build