re-lounge/rl_db_import_export

Installs: 1 500

Dependents: 0

Suggesters: 0

Security: 0

Type:typo3-cms-extension

3.2 2023-03-28 08:16 UTC

This package is auto-updated.

Last update: 2023-11-28 09:58:04 UTC


README

TYPO3 10 TYPO3 11 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