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?