typo3/cms-base-distribution
TYPO3 CMS Base Distribution
Package info
github.com/TYPO3/TYPO3.CMS.BaseDistribution
Type:project
pkg:composer/typo3/cms-base-distribution
Requires
- typo3/cms-backend: ^14.3
- typo3/cms-belog: ^14.3
- typo3/cms-beuser: ^14.3
- typo3/cms-core: ^14.3
- typo3/cms-dashboard: ^14.3
- typo3/cms-extbase: ^14.3
- typo3/cms-felogin: ^14.3
- typo3/cms-filelist: ^14.3
- typo3/cms-fluid: ^14.3
- typo3/cms-fluid-styled-content: ^14.3
- typo3/cms-form: ^14.3
- typo3/cms-frontend: ^14.3
- typo3/cms-impexp: ^14.3
- typo3/cms-info: ^14.3
- typo3/cms-install: ^14.3
- typo3/cms-reactions: ^14.3
- typo3/cms-recycler: ^14.3
- typo3/cms-rte-ckeditor: ^14.3
- typo3/cms-seo: ^14.3
- typo3/cms-setup: ^14.3
- typo3/cms-sys-note: ^14.3
- typo3/cms-tstemplate: ^14.3
- typo3/cms-viewpage: ^14.3
- typo3/cms-webhooks: ^14.3
Requires (Dev)
None
Suggests
None
Provides
None
Conflicts
None
Replaces
None
GPL-2.0-or-later af03f3d0de6d50b81848a64851cb331b5d8a8135
This package is auto-updated.
Last update: 2026-06-21 20:20:08 UTC
README
Get going quickly with TYPO3 CMS.
Prerequisites
- PHP 8.2
- Composer
Quickstart
composer create-project typo3/cms-base-distribution project-name ^13cd project-name
Note that this distribution installs most, but not all of the TYPO3 CMS core extensions. Depending on your need you might also want to install other TYPO3 extensions from packagist.org.
Setup
To start an interactive installation, you can do so by executing the following command and then follow the wizard:
composer exec typo3 setup
Setup unattended (optional)
If you're a more advanced user, you might want to leverage the unattended installation. To do this, you need to execute the following command and substitute the arguments with your own environment configuration.
export TYPO3_SETUP_ADMIN_PASSWORD=$(tr -dc "_A-Za-z0-9#=$()/" < /dev/urandom | head -c24) composer exec -- typo3 setup \ --no-interaction \ --server-type=other \ --driver=sqlite \ --admin-username=admin \ --admin-email="info@example.com" \ --project-name="My TYPO3 Project" \ --create-site="http://localhost:8000/" echo "Admin password: ${TYPO3_SETUP_ADMIN_PASSWORD}"
Development server
While it's advised to use a more sophisticated web server such as Apache 2 or Nginx, you can instantly run the project by using PHPs` built-in web server.
TYPO3_CONTEXT=Development php -S localhost:8000 -t public- open your browser at "http://localhost:8000"
Please be aware that the built-in web server is single threaded and only meant to be used for development.
Next steps
License
GPL-2.0 or later
