这是indexloc提供的服务,不要输入任何密码
Skip to content
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