Introduction 

What does it do? 

The Frontend Theme for Extension Development extension provides a TYPO3 frontend theme for development purposes. Its job is to give a TYPO3 installation a reasonable frontend to look at and to render against, without building a site package for it first.

The situations it is built for, where an extension has to be seen or exercised in a frontend rather than only in a test assertion:

  • Extension development, to click through what an extension actually outputs instead of reading the rendered HTML in a test failure.
  • DDEV based test instances of an extension repository, where a throwaway TYPO3 installation needs a frontend rendering pages, navigation and content elements.
  • Acceptance tests, which need a stable and predictable frontend to drive a browser against.
  • Reproducing an issue in a minimal installation before debugging it.

Core version aware implementations 

Code that has to differ between the supported TYPO3 versions lives below Core13/ and Core14/ in the repository root. Shared code — interfaces, abstract base classes and everything working on both core versions — lives in Classes/.

Only the directory matching the running TYPO3 version is registered in the dependency injection container, so a service asking for an interface always receives the implementation matching the current core version.

Compatibility 

Branch Extension TYPO3 PHP
main 2.x v13.4 / v14.3 8.2 - 8.5
1 1.x v12.4 / v13.4 8.1 - 8.4

This manual documents the main branch. Branch 1 is the maintained line for the previous core version tuple and has a manual of its own; PHP 8.1 is supported there for TYPO3 v12 only, because TYPO3 v13.4 requires PHP 8.2.

Contributing 

Contributions are welcome. The development setup, the quality gates and the commit message rules are described in the CONTRIBUTING.md file of the source repository.