Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there any replacement for PHPDocumentor that supports PHP 5.3?

Tags:

Some of the new PHP 5.3 features, including namespaces and anonymous functions, are not compatible with PHPDocumentor, even with the latest release. For example, it just raises an error when it encounters "a function with no name", i.e. a closure. So, are there any other open-source tools that generate API documentation (preferably in HTML) from Javadoc-style comments in PHP 5.3 code?

like image 699
Ignas R Avatar asked Feb 14 '10 11:02

Ignas R


1 Answers

You could try DocBlox; which is intended to be an alternative for phpDocumentor but with support for additional features of which full PHP 5.3 support is one. An additional benefit is that is it quite fast and uses relatively little memory.

You can read more on http://www.docblox-project.org or see a demo at http://demo.docblox-project.org/default

like image 57
mvriel Avatar answered Oct 25 '22 15:10

mvriel