.. _quickInstallation: ================== Quick installation ================== In a :ref:`composer-based TYPO3 installation ` you can install the extension EXT:rrp_t3toon via composer: .. code-block:: bash composer require rrp/t3-toon 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 :ref:`system maintainer ` permissions. In the module menu to the left navigate to :guilabel:`Admin Tools > Maintenance`, then click on :guilabel:`Analyze database` and create all. Clear all caches ---------------- In the same module :guilabel:`Admin Tools > Maintenance` you can also conveniently clear all caches by clicking the button :guilabel:`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: .. code-block:: php 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