mirror of
https://github.com/anchore/syft.git
synced 2025-11-20 09:53:16 +01:00
31 lines
1.2 KiB
Go
31 lines
1.2 KiB
Go
/*
|
|
Package php provides a concrete Cataloger implementation relating to packages within the PHP language ecosystem.
|
|
*/
|
|
package php
|
|
|
|
import (
|
|
"github.com/anchore/syft/syft/pkg"
|
|
"github.com/anchore/syft/syft/pkg/cataloger/generic"
|
|
)
|
|
|
|
// Note about the distinction between composer.lock and installed.json: composer.lock and installed.json have different
|
|
// semantic meanings. The lock file represents what should be installed, whereas the installed file represents what is installed.
|
|
|
|
// NewComposerInstalledCataloger returns a new cataloger for PHP installed.json files.
|
|
func NewComposerInstalledCataloger() pkg.Cataloger {
|
|
return generic.NewCataloger("php-composer-installed-cataloger").
|
|
WithParserByGlobs(parseInstalledJSON, "**/installed.json")
|
|
}
|
|
|
|
// NewComposerLockCataloger returns a new cataloger for PHP composer.lock files.
|
|
func NewComposerLockCataloger() pkg.Cataloger {
|
|
return generic.NewCataloger("php-composer-lock-cataloger").
|
|
WithParserByGlobs(parseComposerLock, "**/composer.lock")
|
|
}
|
|
|
|
// NewPeclCataloger returns a new cataloger for PHP PECL metadata“.
|
|
func NewPeclCataloger() pkg.Cataloger {
|
|
return generic.NewCataloger("php-pecl-serialized-cataloger").
|
|
WithParserByGlobs(parsePeclSerialized, "**/php/.registry/.channel.*/*.reg")
|
|
}
|