Skip to content
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

feat: add tool cyclonedx-php-composer #512

Merged
merged 1 commit into from
Jan 15, 2025
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ It has been extracted as a separate project to make maintenance easier and enabl
| composer-require-checker | [Verify that no unknown symbols are used in the sources of a package.](https://github.com/maglnet/ComposerRequireChecker) | ❌ | ✅ | ✅ | ✅ |
| composer-require-checker-3 | [Verify that no unknown symbols are used in the sources of a package.](https://github.com/maglnet/ComposerRequireChecker) | ✅ | ✅ | ✅ | ✅ |
| composer-unused | [Show unused packages by scanning your code](https://github.com/icanhazstring/composer-unused) | ✅ | ✅ | ✅ | ✅ |
| cyclonedx-php-composer | [Composer plugin to create Software-Bill-of-Materials (SBOM) in CycloneDX format](https://github.com/CycloneDX/cyclonedx-php-composer) | ✅ | ✅ | ✅ | ✅ |
| dephpend | [Detect flaws in your architecture](https://dephpend.com/) | ✅ | ✅ | ✅ | ✅ |
| deprecation-detector | [Finds usages of deprecated code](https://github.com/sensiolabs-de/deprecation-detector) | ✅ | ✅ | ✅ | ✅ |
| deptrac | [Enforces dependency rules between software layers](https://github.com/qossmic/deptrac) | ✅ | ✅ | ✅ | ✅ |
Expand Down
15 changes: 15 additions & 0 deletions resources/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,21 @@
},
"test": "composer-require-checker-3 -V",
"tags": ["composer"]
},
{
"name": "cyclonedx-php-composer",
"summary": "Composer plugin to create Software-Bill-of-Materials (SBOM) in CycloneDX format",
"website": "https://github.com/CycloneDX/cyclonedx-php-composer",
"command": {
"sh": {
"command": "composer global config --no-plugins allow-plugins.cyclonedx/cyclonedx-php-composer true"
},
"composer-global-install": {
"package": "cyclonedx/cyclonedx-php-composer"
}
},
"test": "composer global show cyclonedx/cyclonedx-php-composer",
"tags": ["composer"]
}
]
}
Loading