typo3 / cms-base-distribution
TYPO3 CMS Base Distribution
Installs: 409 859
Dependents: 25
Suggesters: 0
Security: 0
Stars: 17
Watchers: 9
Forks: 22
Open Issues: 3
Type:project
Requires
- typo3/cms-backend: ^13.4
- typo3/cms-belog: ^13.4
- typo3/cms-beuser: ^13.4
- typo3/cms-core: ^13.4
- typo3/cms-dashboard: ^13.4
- typo3/cms-extbase: ^13.4
- typo3/cms-extensionmanager: ^13.4
- typo3/cms-felogin: ^13.4
- typo3/cms-filelist: ^13.4
- typo3/cms-fluid: ^13.4
- typo3/cms-fluid-styled-content: ^13.4
- typo3/cms-form: ^13.4
- typo3/cms-frontend: ^13.4
- typo3/cms-impexp: ^13.4
- typo3/cms-info: ^13.4
- typo3/cms-install: ^13.4
- typo3/cms-reactions: ^13.4
- typo3/cms-recycler: ^13.4
- typo3/cms-rte-ckeditor: ^13.4
- typo3/cms-seo: ^13.4
- typo3/cms-setup: ^13.4
- typo3/cms-sys-note: ^13.4
- typo3/cms-tstemplate: ^13.4
- typo3/cms-viewpage: ^13.4
- typo3/cms-webhooks: ^13.4
- dev-main
- 13.x-dev
- v13.4.0
- v13.1.0
- v13.0.2
- v13.0.0
- 12.x-dev
- v12.4.0
- v12.3.0
- v12.1.0
- v12.0.1
- v12.0.0
- 11.x-dev
- v11.5.1
- v11.5.0
- v11.4.1
- v11.4.0
- v11.3.0
- v11.1.0
- v11.0.0
- 10.x-dev
- v10.4.3
- v10.4.2
- v10.4.1
- v10.4.0
- v10.3.1
- v10.3.0
- v10.2.0
- v10.1.0
- v10.0.0
- 9.x-dev
- v9.5.1
- v9.5.0
- v9.4.0
- v9.3.1
- v9.3.0
- v9.2.1
- v9.2.0
- v9.1.2
- v9.1.1
- v9.1.0
- 8.x-dev
- v8.7.2
- v8.7.1
- 8.7.0
- 7.6.10
- 7.6.1
- 7.6.0
- 6.2.x-dev
- 6.2.19
- 6.2.15
- 6.2.14
- 6.2.13
- 6.2.12
- 6.2.11
- 6.2.10
- 6.2.9
- 6.2.8
- 6.2.7
- 6.2.6
- 6.2.5
- 6.2.4
- 6.2.3
- 6.2.2
- 6.2.1
- 6.2.0
This package is auto-updated.
Last update: 2024-10-15 13:04:39 UTC
README
Get going quickly with TYPO3 CMS.
Prerequisites
- PHP 8.2
- Composer
Quickstart
composer create-project typo3/cms-base-distribution project-name ^13
cd 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.
License
GPL-2.0 or later