PHP Package: typo3/cms-cli

The TYPO3 CMS Command Line Interface provides streamlined management tools for efficient content and website administration.

Current Version: 3.1.2
Last Updated: 2024-11-13
PHP Requirement: ^7.0 || ^8.0
Dependencies:
typo3/cms-core
typo3/cms-backend
symfony/console
⚠️ To ensure full functionality, the above dependencies might be required.

Package Description

The TYPO3 CMS Command Line Interface (CLI) is a powerful tool designed to enhance the management and maintenance of TYPO3 websites. By leveraging the CLI, users gain access to a wide array of commands that simplify tasks such as content updates, database maintenance, and extension management. With its intuitive interface and robust functionality, the TYPO3 CLI is an essential component for developers and administrators looking to optimize their workflow and ensure the seamless operation of their TYPO3 projects.

🔗 View on GitHub

Download Latest Version: 3.1.2

Download Download v3.1.2

Code Integration Example

Make sure to include the correct namespace and class paths for proper usage.

<?php
// Example from PHPlibraries.com
require_once 'libs/typo3/cms-cli/3.1.2/loader.php';
require_once 'libs/typo3/cms-core/{lib_version}/loader.php';
require_once 'libs/typo3/cms-backend/{lib_version}/loader.php';
require_once 'libs/symfony/console/7.3.0/loader.php';

use TYPO3\CMS\Cli\Command\ClearCacheCommand;
use TYPO3\CMS\Cli\Command\ExtensionListCommand;

$obj = new ClearCacheCommand();
echo '✅ Test OK: ' . get_class($obj);
?>

We aim to make using PHP packages easier without Composer. If something doesn't work, let us know — we'll fix it promptly.

Community Discussion

Ask questions, share tips, or report issues below.