mirror of https://github.com/FriendsOfTYPO3/tea.git synced 2025-03-15 13:03:50 +01:00
tea/Documentation/DependencyManager.rst
Daniel Siepmann 7c9d145279 [TASK] Drop PHP_CodeSniffer ()
As we already have php-cs-fixer to maintain the CGL.
Therefore we get rid of a second tool for the same job.
They have different rules in the existing setup for newer PHP syntax.

Resolves: 
2025-02-03 13:49:43 +01:00

725 B

Dependency manager

To keep things simple, most development tools, for example php-cs-fixer, are installed by Composer as development requirements and in some cases where installation via Composer is not possible, we use PHIVE.

PHIVE packages each tool with all its dependencies as a separate PHAR. This helps avoid dependency hell (which means that you cannot install or upgrade some tool as the tool's dependencies conflict with the dependencies on another library). It also allows running versions of tools that require a PHP version that is higher than the lowest allowed PHP version for this project.