Quick installation
In a composer-based TYPO3 installation you can install the extension EXT:rrp_t3toon via composer:
composer require rrp/t3-toon
Copied!
In TYPO3 installations above version 11.5 the extension will be automatically installed. You do not have to activate it manually.
Requirements
- TYPO3 CMS 12.0.0 - 14.9.99
- PHP 8.0 or higher
Update the database scheme
Open your TYPO3 backend with system maintainer permissions.
In the module menu to the left navigate to Admin Tools > Maintenance, then click on Analyze database and create all.
Clear all caches
In the same module Admin Tools > Maintenance you can also conveniently clear all caches by clicking the button Flush cache.
Verify Installation
After installation, you can verify that the extension is loaded by checking the extension manager or by using the service in your code:
use RRP\T3Toon\Service\Toon;
use TYPO3\CMS\Core\Utility\GeneralUtility;
// Test encoding
$data = ['test' => 'value'];
$toon = GeneralUtility::makeInstance(Toon::class)->convert($data);
echo $toon; // Should output: test: value
Copied!