Skip to content

PHPORM-181: Add SBOM lite #2937

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
85 changes: 85 additions & 0 deletions sbom.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
{
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The file was generated using the cyclonedx/cyclonedx-php-composer library to generate an SBOM from composer.lock, then manually removing all components and dependencies as we only report bundled dependencies:

composer require --dev cyclonedx/cyclonedx-php-composer
composer CycloneDX:make-sbom --output-file=sbom.json --output-format=JSON --omit=dev --omit=plugin

"$schema": "http://cyclonedx.org/schema/bom-1.5.schema.json",
"bomFormat": "CycloneDX",
"specVersion": "1.5",
"serialNumber": "urn:uuid:0b622e40-f57d-4c6f-9f63-db415c1a1271",
"version": 1,
"metadata": {
"timestamp": "2024-05-08T09:52:55Z",
"tools": [
{
"name": "composer",
"version": "2.7.6"
},
{
"vendor": "cyclonedx",
"name": "cyclonedx-php-composer",
"version": "v5.2.0",
"externalReferences": [
{
"type": "distribution",
"url": "https://api.github.com/repos/CycloneDX/cyclonedx-php-composer/zipball/f3a3cdc1a9e34bf1d5748e4279a24569cbf31fed",
"comment": "dist reference: f3a3cdc1a9e34bf1d5748e4279a24569cbf31fed"
},
{
"type": "vcs",
"url": "https://github.com/CycloneDX/cyclonedx-php-composer.git",
"comment": "source reference: f3a3cdc1a9e34bf1d5748e4279a24569cbf31fed"
},
{
"type": "website",
"url": "https://github.com/CycloneDX/cyclonedx-php-composer/#readme",
"comment": "as detected from Composer manifest 'homepage'"
},
{
"type": "issue-tracker",
"url": "https://github.com/CycloneDX/cyclonedx-php-composer/issues",
"comment": "as detected from Composer manifest 'support.issues'"
},
{
"type": "vcs",
"url": "https://github.com/CycloneDX/cyclonedx-php-composer/",
"comment": "as detected from Composer manifest 'support.source'"
}
]
},
{
"vendor": "cyclonedx",
"name": "cyclonedx-library",
"version": "3.x-dev cad0f92",
"externalReferences": [
{
"type": "distribution",
"url": "https://api.github.com/repos/CycloneDX/cyclonedx-php-library/zipball/cad0f92b36c85f36b3d3c11ff96002af5f20cd10",
"comment": "dist reference: cad0f92b36c85f36b3d3c11ff96002af5f20cd10"
},
{
"type": "vcs",
"url": "https://github.com/CycloneDX/cyclonedx-php-library.git",
"comment": "source reference: cad0f92b36c85f36b3d3c11ff96002af5f20cd10"
},
{
"type": "website",
"url": "https://github.com/CycloneDX/cyclonedx-php-library/#readme",
"comment": "as detected from Composer manifest 'homepage'"
},
{
"type": "documentation",
"url": "https://cyclonedx-php-library.readthedocs.io",
"comment": "as detected from Composer manifest 'support.docs'"
},
{
"type": "issue-tracker",
"url": "https://github.com/CycloneDX/cyclonedx-php-library/issues",
"comment": "as detected from Composer manifest 'support.issues'"
},
{
"type": "vcs",
"url": "https://github.com/CycloneDX/cyclonedx-php-library/",
"comment": "as detected from Composer manifest 'support.source'"
}
]
}
]
}
}
Loading