re-lounge / rl_db_import_export
4.0
2024-04-19 06:43 UTC
Requires
- php: >=8.2
- ext-json: *
- typo3/cms-core: ^v12.4.11
Requires (Dev)
- typo3/testing-framework: ^8.0.9
This package is auto-updated.
Last update: 2025-04-02 16:36:35 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