NAME
SBOM::CycloneDX::Dependency - Dependency
SYNOPSIS
SBOM::CycloneDX::Dependency->new();
DESCRIPTION
SBOM::CycloneDX::Dependency defines the direct dependencies of a component, service, or the components provided/implemented by a given component. Components or services that do not have their own dependencies must be declared as empty elements within the graph. Components or services that are not represented in the dependency graph may have unknown dependencies. It is recommended that implementations assume this to be opaque and not an indicator of an object being dependency-free. It is recommended to leverage compositions to indicate unknown dependency graphs.
METHODS
SBOM::CycloneDX::Dependency inherits all methods from SBOM::CycloneDX::Base and implements the following new ones.
- SBOM::CycloneDX::Dependency->new( %PARAMS )
-
Properties:
depends_on
, The bom-ref identifiers of the components or services that are dependencies of this dependency object.provides
, The bom-ref identifiers of the components or services that define a given specification or standard, which are provided or implemented by this dependency object. For example, a cryptographic library which implements a cryptographic algorithm. A component which implements another component does not imply that the implementation is in use.ref
, References a component or service by its bom-ref attribute
- $dependency->depends_on
- $dependency->provides
- $dependency->ref
SUPPORT
Bugs / Feature Requests
Please report any bugs or feature requests through the issue tracker at https://github.com/giterlizzi/perl-SBOM-CycloneDX/issues. You will be notified automatically of any progress on your issue.
Source Code
This is open source software. The code repository is available for public review and contribution under the terms of the license.
https://github.com/giterlizzi/perl-SBOM-CycloneDX
git clone https://github.com/giterlizzi/perl-SBOM-CycloneDX.git
AUTHOR
Giuseppe Di Terlizzi <gdt@cpan.org>
LICENSE AND COPYRIGHT
This software is copyright (c) 2025 by Giuseppe Di Terlizzi.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.