re-lounge/rl_db_import_export

Installs: 5 166

Dependents: 0

Suggesters: 0

Security: 0

Type:typo3-cms-extension

4.0 2024-04-19 06:43 UTC

This package is auto-updated.

Last update: 2025-04-02 16:36:35 UTC


README

TYPO3 12 Packagist PHP Version Bitbucket Pipelines Packagist License (custom server)

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