graph-composer
graph-composer copied to clipboard
Dependency graph visualization for composer.json (PHP + Composer)
Usage example: ``` ./bin/graph-composer export ../bim-test/m2.4.5/pbi-sc-beta-dev/ export-lib2.png --vendors="bim,magento-sample" ``` Result: 
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.
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...
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...
@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.  Colorized graphs work like: - green: latest version - lemon-green: patch available - yellow:...
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...
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...