PHPackages                             ironshark/typo3-configuration-manager - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [CLI &amp; Console](/categories/cli)
4. /
5. ironshark/typo3-configuration-manager

ActiveLibrary[CLI &amp; Console](/categories/cli)

ironshark/typo3-configuration-manager
=====================================

CLI tools for interacting with Typo3 configuration file LocalConfiguration.php. Can be used to update some serialized extension configs during deployment processes.

v0.0.5(10y ago)4379MITPHPPHP ~5.5|~7.0

Since Feb 11Pushed 10y ago4 watchersCompare

[ Source](https://github.com/ironsharkde/typo3-configuration-manager)[ Packagist](https://packagist.org/packages/ironshark/typo3-configuration-manager)[ Docs](https://github.com/ironshark/typo3-configuration-manager)[ RSS](/packages/ironshark-typo3-configuration-manager/feed)WikiDiscussions master Synced 4w ago

READMEChangelogDependencies (5)Versions (8)Used By (0)

typo3-configuration-manager
===========================

[](#typo3-configuration-manager)

[![Latest Version on Packagist](https://camo.githubusercontent.com/d0c01e450158351d549b357e23af016d0aa0bf8972636ddd723b54f39ce368a5/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f69726f6e736861726b2f7479706f332d636f6e66696775726174696f6e2d6d616e616765722e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/ironshark/typo3-configuration-manager)[![Software License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE.md)[![Total Downloads](https://camo.githubusercontent.com/3e673420d01d893e1bf9ef02dd2b4a68662a2e590cd47b42ecda7ce4f58ba9dd/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f69726f6e736861726b2f7479706f332d636f6e66696775726174696f6e2d6d616e616765722e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/ironshark/typo3-configuration-manager)

CLI tools for interacting with Typo3 configuration file LocalConfiguration.php. Can be used to update some serialized extension configs during deployment processes.

Install
-------

[](#install)

Via Composer

```
$ composer require ironshark/typo3-configuration-manager
```

Usage
-----

[](#usage)

### config:list

[](#configlist)

Display all configurations as flat key / value list

```
php vendor/bin/typo3-configuration-manager config:list --source-file="path/to/LocalConfiguration.php"

BE.IPmaskList => '*'
BE.compressionLevel => '0'
BE.debug => '1'
...
XT.extConf.sfpmedialibrary.imageCachePath => 'typo3temp/sfpmedialibrary/'
EXT.extConf.sfpmedialibrary.imageQualityDownload => '90'
EXT.extConf.sfpmedialibrary.imageQualityPreview => '70'
EXT.extConf.sfpmedialibrary.complexImageAsJpegFormat => '400'
EXT.extConf.sfpmedialibrary.thumbnailSizes => '400x300,300x300,200x200'
...
```

#### Options

[](#options)

```
php vendor/bin/typo3-configuration-manager config:list -h

  -s, --source-file[=SOURCE-FILE]  Source config-file path [default: "/var/www/typo3conf/LocalConfiguration.php"]
  -h, --help                       Display this help message
  -q, --quiet                      Do not output any message
  -V, --version                    Display this application version
      --ansi                       Force ANSI output
      --no-ansi                    Disable ANSI output
  -n, --no-interaction             Do not ask any interactive question
  -v|vv|vvv, --verbose             Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug

```

### config:update

[](#configupdate)

Replace values in configuration file

#### Examples

[](#examples)

Set single configuration

```
php vendor/bin/typo3-configuration-manager config:update --path="SYS.UTF8filesystem" --value="ls"

Replace value at path: SYS.UTF8filesystem: null => ls
```

Set multiple configurations from *JSON* object

```
php vendor/bin/typo3-configuration-manager config:update --value-json={\"SYS.UTF8filesystem\":\"test\"}
Replace value at path: SYS.UTF8filesystem: 1 => test
...
```

Set multiple configurations from *JSON* object using custom source and destination

```
php vendor/bin/typo3-configuration-manager config:update --source-file="/var/www/typo3conf/LocalConfiguration.php" --destination-file="/var/www/typo3conf/LocalConfiguration.php.test" --value-json={\"SYS.binSetup\":\"test\"}

Replace value at path: SYS.binSetup: perl=/usr/bin/perl,unzip=/usr/bin/unzip => test
...
```

##### Options

[](#options-1)

```
php vendor/bin/typo3-configuration-manager config:update -h

  -s, --source-file[=SOURCE-FILE]            Source config-file path [default: "/var/www/typo3conf/LocalConfiguration.php"]
  -d, --destination-file[=DESTINATION-FILE]  Destination config-file path, source file will be overwritten if no destination provided
  -f, --value-file[=VALUE-FILE]              Path to file with new values
  -j, --value-json[=VALUE-JSON]              New values as JSON
  -p, --path[=PATH]                          Path for single element configuration e.g EXT.extConf.sfpmedialibrary.apiUrl
      --value[=VALUE]                        Value for single element configuration e.g https://api.tld
  -h, --help                                 Display this help message
  -q, --quiet                                Do not output any message
  -V, --version                              Display this application version
      --ansi                                 Force ANSI output
      --no-ansi                              Disable ANSI output
  -n, --no-interaction                       Do not ask any interactive question
  -v|vv|vvv, --verbose                       Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug

```

### list

[](#list)

List all available commands

```
php vendor/bin/typo3-configuration-manager list
```

Change log
----------

[](#change-log)

Please see [CHANGELOG](CHANGELOG.md) for more information what has changed recently.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) and [CONDUCT](CONDUCT.md) for details.

Security
--------

[](#security)

If you discover any security related issues, please email  instead of using the issue tracker.

Credits
-------

[](#credits)

- [Anton Pauli](https://github.com/TUNER88)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

27

—

LowBetter than 47% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity16

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity53

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~0 days

Total

5

Last Release

3792d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/21e9b7ea17d986bae709d9ce167df6df4df854f742bc76097139af77e4e9a34b?d=identicon)[TUNER88](/maintainers/TUNER88)

---

Top Contributors

[![TUNER88](https://avatars.githubusercontent.com/u/1565397?v=4)](https://github.com/TUNER88 "TUNER88 (14 commits)")

---

Tags

ironsharktypo3-configuration-manager

###  Code Quality

TestsPHPUnit

Code StylePHP\_CodeSniffer

### Embed Badge

![Health badge](/badges/ironshark-typo3-configuration-manager/health.svg)

```
[![Health](https://phpackages.com/badges/ironshark-typo3-configuration-manager/health.svg)](https://phpackages.com/packages/ironshark-typo3-configuration-manager)
```

###  Alternatives

[illuminate/console

The Illuminate Console package.

13045.3M6.3k](/packages/illuminate-console)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
