sudhaus7 / sudhaus7-wizard
(Sudhaus7) Wizard to copy Typo3 Website Trees
Installs: 3 575
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 2
Open Issues: 3
Type:typo3-cms-extension
Requires
- php: ^8.0 || ^8.1 || ^8.2
- ext-curl: *
- psr/log: ^1.0
- typo3/cms-core: 11.5.*
Requires (Dev)
- friendsoftypo3/phpstan-typo3: ^0.9
- georgringer/news: ^11.0
- helhum/typo3-console: *
- saschaegerer/phpstan-typo3: ^1.9
- ssch/typo3-rector: ^1.1
- sudhaus7/template: @dev
- typo3/cms-backend: ^11.5
- typo3/cms-beuser: ^11.5
- typo3/cms-composer-installers: ^3.0
- typo3/cms-frontend: ^11.5
- typo3/cms-info: ^11.5
- typo3/cms-install: ^11.5
- typo3/cms-introduction: ^4.4
- typo3/cms-lowlevel: ^11.5
- typo3/cms-tstemplate: ^11.5
- typo3/coding-standards: ^0.7
- typo3/testing-framework: ^7.0
- dev-main
- 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-typo3_12
This package is auto-updated.
Last update: 2024-10-17 13:07:42 UTC
README
A TYPO3 Plugin for duplicating Sites
Changelog 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; }