re-lounge / rl_db_import_export
3.2
2023-03-28 08:16 UTC
Requires
- php: >=7.4
- ext-json: *
- symfony/console: ^4.4 || ^5.0
- typo3/cms-core: ^v10.4.34 || ^11.5.22
Requires (Dev)
- typo3/testing-framework: ^6.16.7
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