sudhaus7 / default-sitepackage
Sudhaus7 TYPO3 CMS Base Sitepackage
Requires
- php: 8.1.* || 8.2.*
- ext-json: *
- ext-pdo: *
- ext-yaml: *
- helhum/typo3-console: ^8.0.0
- typo3/cms-about: 12.4.*
- typo3/cms-backend: 12.4.*
- typo3/cms-belog: 12.4.*
- typo3/cms-beuser: 12.4.*
- typo3/cms-composer-installers: 5.*
- typo3/cms-core: 12.4.*
- typo3/cms-extbase: 12.4.*
- typo3/cms-extensionmanager: 12.4.*
- typo3/cms-felogin: 12.4.*
- typo3/cms-filelist: 12.4.*
- typo3/cms-fluid: 12.4.*
- typo3/cms-fluid-styled-content: 12.4.*
- typo3/cms-form: 12.4.*
- typo3/cms-frontend: 12.4.*
- typo3/cms-impexp: 12.4.*
- typo3/cms-info: 12.4.*
- typo3/cms-install: 12.4.*
- typo3/cms-recordlist: 12.4.*
- typo3/cms-rte-ckeditor: 12.4.*
- typo3/cms-seo: 12.4.*
- typo3/cms-setup: 12.4.*
- typo3/cms-sys-note: 12.4.*
- typo3/cms-t3editor: 12.4.*
- typo3/cms-tstemplate: 12.4.*
- typo3/cms-viewpage: 12.4.*
Requires (Dev)
- phpunit/phpunit: *
- typo3/cms-adminpanel: 12.4.*
- typo3/cms-lowlevel: 12.4.*
- typo3/coding-standards: ^0.5.3
- dev-master
- 12.x-dev
- 12.12
- 12.11
- 12.10
- 12.9
- 12.8
- 12.7
- 12.6
- 12.5
- 12.4
- 12.3
- 12.2
- 12.1
- 11.x-dev
- 11.12
- 11.11
- 11.10
- 11.9
- 11.8
- 11.7
- 11.6
- 11.4
- 11.3
- 11.2
- 11.1
- 11.0
- 10.x-dev
- 10.4.9
- 10.4.8
- 10.4.7
- 10.4.6
- 10.4.5
- 10.4.4
- 10.4.3
- 10.4.2
- 10.4.1
- 10.4.0
- 10.3.0
- 10.2.9
- 10.2.7
- 10.2.6
- 10.2.5
- 10.2.4
- 10.2.3
- 10.2.1
- 10.2.0
- 10.1.2
- 10.1.1
- 10.1.0
- 10.0.1
- v10.0.0
- 9.x-dev
- 9.5.9
- 9.5.8
- 9.5.7
- 9.5.6
- 9.5.5
- 9.5.4
- 9.5.3
- 9.5.2
- 9.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
- 8.7.5
- 8.7.4
- 8.7.3
- v8.7.2
- v8.7.1
- v8.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-24 17:59:25 UTC
README
Get going quickly with TYPO3 CMS.
Prerequisites
Quickstart
composer create-project sudhaus7/default-sitepackage project-name ^12
cd project-name
Changes (12)
- init.sh script has been added to manage git init stuff.
- updates on the entry point for some composer commands
Changes (10 and 11)
- The typo3/coding-standards is now installed and used
- a default .php-cs-fixer.php config has been added with a Sudhaus7/B-Factor/12bis3/code711 specific header. If you are not working for Sudhaus7/B-Factor/12bis3/code711 you might want to change that header, otherwise it will be applied to all your files in packages
- in .githooks a pre-commit hook has been added which will parse to-be-commited php files with the php-cs-fixer
- a .gitconfig has been added to configure the local .githooks folder
- On
composer create-project
git-init will be executed (default branch main) and this .gitconfig will be added to the config.
Setup:
To start an interactive installation, you can do so by executing the following command and then follow the wizard:
php vendor/bin/typo3cms install: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 substite the arguments with your own environment configuration.
php vendor/bin/typo3cms install:setup \
--non-interactive \
--database-user-name=typo3 \
--database-user-password=typo3 \
--database-host-name=127.0.0.1 \
--database-port=3306 \
--database-name=typo3 \
--use-existing-database \
--admin-user-name=admin \
--admin-password=password \
--site-setup-type=site
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. Which is ultimately a performance killer and may result in deadlocks if you execute too many requests at once.
License
GPL-2.0 or later