mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-10 00:16:13 +01:00
[BUGFIX] Have all extension dependencies in the ext_emconf.php
as well (#515)
For non-Composer installations, all extension dependencies that are in the `composer.json` should also be in the `ext_emconf.php`. Even for extensions that are always installed (like frontend or fluid), it is good practice to always make these dependencies explicit.
This commit is contained in:
parent
d552cb2961
commit
821cb8400b
2 changed files with 3 additions and 0 deletions
|
@ -15,6 +15,7 @@ This project adheres to [Semantic Versioning](https://semver.org/).
|
|||
### Removed
|
||||
|
||||
### Fixed
|
||||
- Have all extension dependencies in the `ext_emconf.php` as well (#515)
|
||||
- Bump the minimal 10.4 Extbase requirement (#514)
|
||||
- Explicitly require Prophecy (#511)
|
||||
|
||||
|
|
|
@ -10,6 +10,8 @@ $EM_CONF[$_EXTKEY] = [
|
|||
'php' => '7.2.0-8.1.99',
|
||||
'typo3' => '10.4.0-11.5.99',
|
||||
'extbase' => '10.4.6-11.5.99',
|
||||
'fluid' => '10.4.0-11.5.99',
|
||||
'frontend' => '10.4.0-11.5.99',
|
||||
],
|
||||
],
|
||||
'state' => 'stable',
|
||||
|
|
Loading…
Reference in a new issue