DEPRECATION WARNING

This documentation is not using the current rendering mechanism and is probably outdated. The extension maintainer should switch to the new system. Details on how to use the rendering mechanism can be found here.

InstallationΒΆ

Composer

If you are working with Composer (which you should), require romm/configuration-object. You should now have in your composer.json something like:

"require": {
    ...
    "romm/configuration-object": "*"
    ...
}

TER

You can download the extension on the TER: https://typo3.org/extensions/repository/view/configuration_object

Dependency

Do not forget to update the ext_emconf.php of your extension, and add the configuration_object dependency:

$EM_CONF[$_EXTKEY] = [
    ...
    'constraints' => [
        'depends'   => [
            'configuration_object' => '1.0.0-1.99.99'
        ]
    ]
    ...
];