fzaninotto / DependencyWheel

A package dependency visualization using d3.js. Currently supports Composer for PHP.
http://www.redotheweb.com/DependencyWheel/
MIT License
263 stars 154 forks source link

Fails with basic example dataset mentioned in the documentation. #13

Open rbairi opened 7 years ago

rbairi commented 7 years ago

Tried to test it with the dataset used in the documentation: var data = { packageNames: ['Main', 'A', 'B'], matrix: [[0, 1, 1], // Main depends on A and B [0, 0, 1], // A depends on B [0, 0, 0]] // B doesn't depend on A or Main };

DependencyWheel based on above data set still shows that A depends on Main - doesn't reflect the data. Seems something is wrong.