Skip to content

Commit

Permalink
[BUGFIX] Make symfony/console an explicit dependency
Browse files Browse the repository at this point in the history
Relying on transitional dependencies (and their version constraints)
is considered bad practice.

Also reorder the dependencies to follow best practices.

Related to #2312
  • Loading branch information
oliverklee committed Jan 16, 2024
1 parent 990150d commit d7b97bf
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,9 @@
"GPL-2.0-or-later"
],
"require": {
"typo3/cms-core": "^11.5.24 || ^12.4.0",
"php": ">= 7.4 < 8.3"
"php": ">= 7.4 < 8.3",
"symfony/console": "^5.4 || ^6.4 || ^7.0",
"typo3/cms-core": "^11.5.24 || ^12.4.0"
},
"conflict": {
"symfony/finder": "2.7.44 || 2.8.37 || 3.4.7 || 4.0.7"
Expand Down

0 comments on commit d7b97bf

Please sign in to comment.