---
title: "Deprecation: #94902 - Deprecate lowerCamelCase options of EXT:impexp commands"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:deprecation-94902"
source: "Changelog/11.4/Deprecation-94902-LowerCamelCaseOptionsOfExtImpExpCommands.rst"
modified: "2026-09-15T10:46:36+00:00"
---

# Deprecation: #94902 - Deprecate lowerCamelCase options of EXT:impexp commands

See [forge#94902](https://forge.typo3.org/issues/94902)

## Description

The CLI commands `impexp:export` and `impexp:import` offered
lowerCamelCased options, while the other TYPO3 Core commands offer lowercase
options only. The lowercase option aliases were introduced in both commands and
the lowerCamelCased options were marked as deprecated and will be removed in
TYPO3 v12.

## Impact

If the CLI commands `impexp:export` or `impexp:import` are
executed with lowerCamelCased options, a PHP `E_USER_DEPRECATED` error is
raised.

## Affected Installations

Any TYPO3 installation using lowerCamelCased options with commands
`impexp:export` or `impexp:import`.

## Migration

Switch to the lower-cased option aliases:

1.  `impexp:export --includeRelated` => `impexp:export --include-related`
1.  `impexp:export --includeStatic` => `impexp:export --include-static`
1.  `impexp:export --excludeDisabledRecords` => `impexp:export --exclude-disabled-records`
1.  `impexp:export --excludeHtmlCss` => `impexp:export --exclude-html-css`
1.  `impexp:export --saveFilesOutsideExportFile` => `impexp:export --save-files-outside-export-file`
1.  `impexp:import --updateRecords` => `impexp:import --update-records`
1.  `impexp:import --ignorePid` => `impexp:import --ignore-pid`
1.  `impexp:import --forceUid` => `impexp:import --force-uid`
1.  `impexp:import --importMode` => `impexp:import --import-mode`
1.  `impexp:import --enableLog` => `impexp:import --enable-log`
