Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've got an old PHP website I know little about the structure of, and I'd like to generate a dependency graph to help me learn more about it. PDepend can handle some of it, but a lot of the site was written with just require statements and no namespaces.

There are some tools to handle those as well (eg inclued), but it looks like those mostly only work at runtime. I can get a good deal of information out of some regex magic, but it might be missing something and I'd like more if I could also get a count of functions used from a required file for edge weights, which RE can't handle.

Is there something that will do this sort of parsing on source code and dump it into XML or a CSV or something else easily parseable by my graph generator?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.