---
title: "Feature: #82254 - Store extension configuration as plain array"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:feature-82254"
source: "Changelog/9.0/Feature-82254-StoreExtensionConfigurationAsPlainArray.rst"
typo3-version: "9.0"
typo3-major: 9
type: "feature"
issue: 82254
forge: "https://forge.typo3.org/issues/82254"
tags: ["LocalConfiguration", "PHP-API"]
rendered: "2026-09-18T17:00:34+00:00"
---

# Feature: #82254 - Store extension configuration as plain array {#feature-82254}

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

## Description {#description}

There is no reason to save the extension configuration as serialized values instead of
an plain array. Arrays are easier to handle and there are already parts of the core
using arrays (for example the avatar provider registration).

Therefore the API has been changed to store the extension configuration as an array
in `$GLOBALS['TYPO3_CONF_VARS']['EXTENSIONS']`. The configuration is merged on save
with the default configuration and the full configuration is written to LocalConfiguration.

## Impact {#impact}

Extension configuration can now be accessed as array directly, without
calling unserialize(). The old and new API will co-exist in version 9.

Use a new API to retrieve extension configuration, examples:

```php
// Retrieve a single key
$backendFavicon = (bool)GeneralUtility::makeInstance(ExtensionConfiguration::class)->get('backend', 'backendFavicon');

// Retrieve whole configuration
$backendConfiguration = GeneralUtility::makeInstance(ExtensionConfiguration::class)->get('backend');
```
