sudhaus7 / sudhaus7-wizard
(Sudhaus7) Wizard to copy Typo3 Website Trees
Package info
Type:typo3-cms-extension
pkg:composer/sudhaus7/sudhaus7-wizard
1.0.1
2026-06-03 14:01 UTC
Requires
- php: ^8.2 || ^8.3 || ^8.4 || ^8.5
- ext-curl: *
- psr/log: ^3.0
- typo3/cms-core: ^13.4
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.95
- phpstan/phpstan: ^2.2
- phpunit/phpunit: ^11.5
- saschaegerer/phpstan-typo3: ^3.0
- sbuerk/fixture-packages: ^1.1
- sbuerk/typo3-site-based-test-trait: ^2.0 || ^3.0
- typo3/cms-backend: ^13.4
- typo3/cms-beuser: ^13.4
- typo3/cms-frontend: ^13.4
- typo3/cms-install: ^13.4
- typo3/cms-lowlevel: ^13.4
- typo3/cms-tstemplate: ^13.4
- typo3/coding-standards: ^0.8
- typo3/testing-framework: ^9.5.0
- dev-main
- 1.0.1
- 1.0.0
- 0.5.x-dev
- 0.5.21
- 0.5.20
- 0.5.19
- 0.5.18
- 0.5.17
- 0.5.16
- 0.5.15
- 0.5.14
- 0.5.13
- 0.5.12
- 0.5.11
- 0.5.10
- 0.5.9
- 0.5.8
- 0.5.7
- 0.5.6
- 0.5.5
- 0.5.4
- 0.5.3
- 0.5.2
- 0.5.1
- 0.5.0
- 0.4.15
- 0.4.14
- 0.4.13
- 0.4.12
- 0.4.11
- 0.4.10
- 0.4.9
- 0.4.8
- 0.4.7
- 0.4.6
- 0.4.5
- 0.4.4
- 0.4.3
- 0.4.2
- 0.4.1
- 0.4.0
- 0.3.23
- 0.3.22
- 0.3.21
- 0.3.20
- 0.3.19
- 0.3.18
- 0.3.17
- 0.3.16
- 0.3.15
- 0.3.14
- 0.3.13
- 0.3.12
- 0.3.11
- 0.3.10
- 0.3.9
- 0.3.8
- 0.3.7
- 0.3.6
- 0.3.5
- 0.3.4
- 0.3.3
- 0.3.2
- 0.3.1
- 0.3.0
- 0.2.36
- 0.2.35
- 0.2.34
- 0.2.33
- 0.2.32
- 0.2.31
- 0.2.30
- 0.2.29
- 0.2.28
- 0.2.27
- 0.2.25
- 0.2.24
- 0.2.23
- 0.2.22
- 0.2.21
- 0.2.20
- 0.2.19
- 0.2.18
- 0.2.17
- 0.2.16
- 0.2.15
- 0.2.14
- 0.2.13
- 0.2.11
- 0.2.10
- 0.2.9
- 0.2.8
- 0.2.7
- 0.2.6
- 0.2.5
- 0.2.4
- 0.2.3
- 0.2.2
- 0.2.1
- 0.2.0
- 0.1.0
- 0.0.3
- 0.0.2
- 0.0.1
- dev-prepare-release-1.0.1
- dev-smaller-fixes
- dev-v13-compat
- dev-legacy-stable-05
- dev-typo3_11
- dev-typo3_12
This package is auto-updated.
Last update: 2026-06-03 14:03:01 UTC
README
This is a TYPO3 extension with the extension key sudhaus7_wizard. With this extension a sitepackage can be extended to be able to completly clone an existing site by generating a wizard record, configuring the new name, url and user.
Changelog
1.0.1
- Feature: Added site set support
- Bugfix: Corrected sites config path for classic installations
- Bugfix: Corrected wizard command
- Bugfix: Ensured correct folder creation
1.0.0
- Requires TYPO3 13.4 (dependency updated from
^13.0to^13.4) - Requires PHP 8.2 or higher
- Breaking change:
WizardProcessInterfacehas been extended by a new method providing the template-defined file mountpoints to replace. Add this to your implementations:
public function getFileMountPoints(): array;
The file mountpoint is now replaced (not appended) on wizard run during be_groups generation. To restore the previous append behaviour, listen to CreateBackendUserGroupEvent, which now exposes the template file mountpoints via getTemplateFileMountPoints().
0.4.0
- breaking change a Source has been defined from SourceInterface. Sources need now a connection to the CreateProcess. Upgrade your source by adding this code-snippet:
use SUDHAUS7\Sudhaus7Wizard\CreateProcess; protected ?CreateProcess $createProcess = null; public function getCreateProcess(): CreateProcess { if ($this->createProcess === null) { throw new \InvalidArgumentException('Create Process must be defined', 1715795482); } return $this->createProcess; } public function setCreateProcess( CreateProcess $createProcess ): void { $this->createProcess = $createProcess; }
0.2.0
- Breaking change: Update in WizardProcessInterface - in getTemplateBackendUserGroup and getTemplateBackendUser the CreateProcess Object is now added as a parameter. Please update your implementations for this Interface accordingly
public function getTemplateBackendUser(CreateProcess $pObj): array; public function getTemplateBackendUserGroup(CreateProcess $pObj): array;
0.2.0
- Breaking change: Update in WizardTemplateConfigInterface - please add at least the following lines to your implementations of this interface:
public function modifyRecordTCA(array $TCA): array { return $TCA; }