Georg Ringer
TYPO3 backend freelancer focused on scalable, architecturally sound solutions for agencies and enterprises.
Background
For over a decade I have been working with TYPO3 — from early versions to the current v13. My focus is on the backend: clean extension development, robust data models and performant architectures that remain maintainable long-term.
I support agencies and companies in both greenfield development and complex migration and modernisation projects. My approach is shaped by architectural clarity — every decision has a reason, and every line of code must survive the next LTS upgrade.
Philosophy
Core-near development Core-near development means using TYPO3 APIs the way they were intended. No hacks, no workarounds — instead clean event listeners, PSR-compliant middleware and Extbase architectures that grow with the core.
// Clean architecture over clever hacks
class NewsController extends ActionController {
public function __construct(
private readonly NewsRepository $newsRepository,
private readonly CacheManager $cacheManager,
) {}
}