graph-composer icon indicating copy to clipboard operation
graph-composer copied to clipboard

Dependency graph visualization for composer.json (PHP + Composer)

Results 7 graph-composer issues
Sort by recently updated
recently updated
newest added

Usage example: ``` ./bin/graph-composer export ../bim-test/m2.4.5/pbi-sc-beta-dev/ export-lib2.png --vendors="bim,magento-sample" ``` Result: ![export-lib2](https://user-images.githubusercontent.com/6292292/230068140-bca15a08-b603-4a11-8179-eaf6e0314b67.png)

new feature

The current behavior is to also visualize development dependencies. This should be changed to ignore them by default and add a new `--dev` argument flag which enables showing development dependencies.

new feature
help wanted

Some projects have _many_ dependencies and the graphs can get too large (#11). One option would be to add a `--depth` option in order to limit the depth of the...

new feature
help wanted

My graph is just to large. I want to use it for documentation purposes and don't want to show up third party graph-nodes. So a regular expression filter would help...

new feature
help wanted

@wol-soft has implemented an up-to-date check based on #45 in https://github.com/wol-soft/graph-composer/pull/1 which colorizes the graph. ![MicrosoftTeams-image](https://user-images.githubusercontent.com/14750468/66417845-2baaee00-ea01-11e9-86e3-f5e9facf1abd.png) Colorized graphs work like: - green: latest version - lemon-green: patch available - yellow:...

new feature
help wanted

The default exported image is from up to down. So, when the dependence packages go large, the width of the image goes wide. I think it would be better to...

new feature
help wanted

As mentioned in #74, I would like to add support for PHP 8.4. I have made the following changes in `src/Graph/GraphComposer.php`: ```php /** * * @param string $dir * @param...