A TYPO3 extension which lets you use any TypoScript object as a normal content element.

Maintainers

Package info

github.com/simonschaufi/t3ext-tscobj

Type:typo3-cms-extension

pkg:composer/simonschaufi/tscobj

Transparency log

Statistics

Installs: 23 328

Dependents: 0

Suggesters: 0

Stars: 4

Open Issues: 0

v6.0.0 2026-08-12 14:39 UTC

This package is auto-updated.

Last update: 2026-08-12 16:10:16 UTC


README

Donate Latest Stable Version Total Downloads License TYPO3

A TYPO3 extension which lets you use any TypoScript object as a normal content element.

Documentation

See tscobj Extension documentation

Usage

Installation

Installation using Composer

The recommended way to install the extension is using Composer.

Run the following command within your Composer based TYPO3 project:

composer require simonschaufi/tscobj

Installation from TYPO3 Extension Repository (TER)

Download and install the extension with the extension manager module in the TYPO3 backend.

Integration

Define your TypoScript:

lib.test = TEXT
lib.test.value = Show this text as content

Add the TypoScript Object Plugin on your page and paste the TypoScript config path lib.test in the plugin configuration.

Release Management

We follow semantic versioning, which means, that

  • bugfix updates (e.g. 1.0.0 => 1.0.1) just includes small bugfixes or security relevant stuff without breaking changes,
  • minor updates (e.g. 1.0.0 => 1.1.0) includes new features and smaller tasks without breaking changes,
  • and major updates (e.g. 1.0.0 => 2.0.0) breaking changes which can be refactorings, features or bugfixes.

Contribution

Pull Requests are gladly welcome! Please remember to add an issue and connect it to your pull requests. This is very helpful to understand what kind of issue the PR is going to solve.

Bugfixes: Please describe what kind of bug your fix solve and give us feedback on how to reproduce the issue. We're going to accept only bugfixes if we can reproduce the issue.