Reputation: 283
I downloaded phpdoc, and whatever I do, he drops:
Could not open input file: \phpdoc.php
in the console. The path of this file is in the path and php include's path. I did tried him with another php script and it confirmed that (from console). What am I doing wrong?
Upvotes: 2
Views: 2991
Reputation: 11076
Try following the approach suggested on the main page:
$ pear channel-discover pear.phpdoc.org
$ pear install phpdoc/phpDocumentor-alpha
$ phpdoc -d . -t docs
Upvotes: 2