Skip to content

Commit

Permalink
fix(composer): Do not use the managerName for packages
Browse files Browse the repository at this point in the history
The `managerName` is meant to be used only for the `Identifier.type` of
`Project`s.

Signed-off-by: Frank Viernau <frank_viernau@epam.com>
  • Loading branch information
fviernau authored and sschuberth committed Aug 7, 2024
1 parent 543de7b commit 37e0e5c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ class Composer(

packages[rawName] = Package(
id = Identifier(
type = managerName,
type = "Composer",
namespace = rawName.substringBefore('/'),
name = rawName.substringAfter('/'),
version = version
Expand Down

0 comments on commit 37e0e5c

Please sign in to comment.