fix: add php catalogers to all catalogers (#1065)

Co-authored-by: Christopher Phillips <christopher.phillips@anchore.com>
This commit is contained in:
cpendery 2022-06-27 10:53:10 -04:00 committed by GitHub
parent 2b8e15b638
commit 73262c7258
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -98,6 +98,8 @@ func AllCatalogers(cfg Config) []Cataloger {
rust.NewCargoLockCataloger(), rust.NewCargoLockCataloger(),
dart.NewPubspecLockCataloger(), dart.NewPubspecLockCataloger(),
dotnet.NewDotnetDepsCataloger(), dotnet.NewDotnetDepsCataloger(),
php.NewPHPComposerInstalledCataloger(),
php.NewPHPComposerLockCataloger(),
}, cfg.Catalogers) }, cfg.Catalogers)
} }