PHP / script site with dependencies

I just inherited a large PHP 5.3 site and wondered if there was some kind of crawler or site tool that would identify files and their dependencies.

+3
source share
1 answer

You can define PHP dependencies and extensions on PEAR PHP_CompatInfo . As for the PEAR packages that the application can use, you can see what is installed with

pear list -a

I do not know a tool that will tell you which external script dependencies are used other than grep.

+1
source

All Articles