Skip to content

Releases: TYPO3/CmsComposerInstallers

Release 5.0.1

13 Aug 15:03
444a228
Compare
Choose a tag to compare

This release contains a couple of bugfixes related to newer PHP versions.

Release 4.0.0-RC2

13 Aug 15:00
299f733
Compare
Choose a tag to compare

This release contains a couple of bugfixes related to newer PHP versions

Release 3.1.4

13 Aug 14:59
29fb214
Compare
Choose a tag to compare

This release contains a couple of bugfixes related to newer PHP versions

Release 3.1.3

20 Jan 21:33
v3.1.3
613d820
Compare
Choose a tag to compare

This release contains a couple of bugfixes related to newer PHP versions

Release 5.0.0

20 Jan 21:34
v5.0.0
7135648
Compare
Choose a tag to compare

This release is identical to 4.0.0-RC1 and done to make it possible for TYPO3 12LTS to depend on it, without forcing TYPO3 11LTS users to use it.

Release 4.0.0-RC1

10 Dec 12:25
d9b4e06
Compare
Choose a tag to compare

Features

  • All extensions are now installed in the vendor folder. This means all extension files will not be accessible by the web server any more.
    Public resources from extensions must be in the Resources/Public folder, which will automatically be published by TYPO3 using
    symlinks. See "breaking changes" for more implications on that change.

Breaking changes

All extensions are now installed in the vendor folder.

While this is a great feature, it also comes with some implications that need to be considered:

  1. All files from extensions, that require to be accessed by the web server directly MUST reside inside the Resources/Public folder.
  2. The public resource URL can not be derived any more from the absolute path to the file by stripping off some path part, but only by
    passing the absolute path to \TYPO3\CMS\Core\Utility\PathUtility::getAbsoluteWebPath
    Example:
use TYPO3\CMS\Core\Utility\PathUtility;
use TYPO3\CMS\Core\Utility\GeneralUtility;

PathUtility::getAbsoluteWebPath(GeneralUtility::getFileAbsFileName('EXT:ext_key/Resources/Public/Icons/Extension.svg'));
  1. Every TYPO3 extension (Composer package of type typo3-cms-extension) must define its extension key explicitly in composer.json
  2. It is not possible any more to change app-dir or root-dir within the root composer.json Only web-dir can still be changed,
    but it needs to be a sub directory of the composer.json directory

General remarks

It is planned to release a stable version 4.0.0 in a few weeks and new projects with TYPO3 11.5 will then install this version of composer installers. If the extension you require in your project have hard coded paths that reference e.g. typo3conf/ext/ directly, you can still pin this package to version ^3.1 within your root composer.json

Release 3.1.2

27 Sep 13:14
1483e43
Compare
Choose a tag to compare

Allow composer/installers 2.0 and higher

Release 1.5.10

20 Aug 10:01
60bac21
Compare
Choose a tag to compare

Fixes an bug with installers when using composer.typo3.org as repository

[RELEASE] Add compatibility for PHP 8.0

02 Mar 09:26
f307b64
Compare
Choose a tag to compare
Merge pull request #112 from lolli42/lolli-1

[TASK] Allow PHP 8

Release 1.5.6

08 Jan 12:21
v1.5.6
Compare
Choose a tag to compare

Mark as compatible with all bugfix versions of PHP 7.4