[PHP] Does something like this exist?

2009-06-29 Thread Christoph Boget
I'm wondering if there isn't something out there that crawls through your codebase and generates a map of (any of) the following: * What files are include in which scripts * The relationships between defined classes (eg A extends B) * What other classes are utilized by which classes (eg,

Re: [PHP] Does something like this exist?

2009-06-29 Thread Dotan Cohen
I'm wondering if there isn't something out there that crawls through your codebase and generates a map of (any of) the following: * What files are include in which scripts * The relationships between defined classes (eg A extends B) * What other classes are utilized by which classes (eg,

Re: [PHP] Does something like this exist?

2009-06-29 Thread Ashley Sheridan
On Mon, 2009-06-29 at 23:16 +0300, Dotan Cohen wrote: I'm wondering if there isn't something out there that crawls through your codebase and generates a map of (any of) the following: * What files are include in which scripts * The relationships between defined classes (eg A extends B)

Re: [PHP] Does something like this exist?

2009-06-29 Thread Michael Shadle
On Mon, Jun 29, 2009 at 1:16 PM, Dotan Cohendotanco...@gmail.com wrote: * What files are include in which scripts pecl.php.net/package/inclued - an awesome tool, will show you includes/require calls to other ones, show you any redundancy (dotted lines) etc. helps you clean up any nested and

Re: [PHP] Does something like this exist?

2009-06-29 Thread Christoph Boget
* What files are include in which scripts pecl.php.net/package/inclued  - an awesome tool, will show you includes/require calls to other ones, show you any redundancy (dotted lines) etc. helps you clean up any nested and unnecessary includes or requires. Rasmus approved(tm) use it with

Re: [PHP] Does something like this exist?

2009-06-29 Thread Eddie Drapkin
Have you looked at class_parents()? http://www.php.net/manual/en/function.class-parents.php On Mon, Jun 29, 2009 at 4:42 PM, Christoph Bogetjcbo...@yahoo.com wrote: * What files are include in which scripts pecl.php.net/package/inclued  - an awesome tool, will show you includes/require calls

Re: [PHP] Does something like this exist?

2009-06-29 Thread Nathan Nobbe
On Mon, Jun 29, 2009 at 2:12 PM, Christoph Boget christoph.bo...@gmail.comwrote I'm wondering if there isn't something out there that crawls through your codebase and generates a map of (any of) the following: * What files are include in which scripts the inclued extension