From: Adam Richardson on
On Thu, Sep 30, 2010 at 2:30 PM, Erik L. Arneson <dybbuk(a)lnouv.com> wrote:

> On Wed, 29 Sep 2010, Adam Richardson wrote:
> > Hi all,
> >
> > Anybody know of a documentation generator which plays nicely with PHP
> > 5.3?
>
> I've always been a fan of phpDocumentor.
>
>
I agree, it's worked very well in the past. However, it looks like it's
been a while since a new release:
http://www.phpdoc.org/news.php?id=57

My code makes extensive use of namespaces and other new features found
within PHP 5.3, and these don't appear to be supported within phpDocumentor.

Any other options?

Adam

--
Nephtali: PHP web framework that functions beautifully
http://nephtaliproject.com
From: David Harkness on
While we don't use any 5.3 specific features such as namespaces yet, we set
up our continuous integration system to use Doxygen. It runs significantly
faster than phpDocumentor, though we put zero effort into tuning either
system.
From: Andrew Mason on
On Fri, Oct 1, 2010 at 6:44 AM, David Harkness
<david.h(a)highgearmedia.com> wrote:
> While we don't use any 5.3 specific features such as namespaces yet, we set
> up our continuous integration system to use Doxygen. It runs significantly
> faster than phpDocumentor, though we put zero effort into tuning either
> system.
>

I started patching Doxygen a while ago but got sort of side tracked.
Out of PHPDocumentor and Doxygen, Doxygen seemed to be the closest as
it had namespace support already for other languages. only the tokens
needed changing. It uses Flex /Bison as the lexer and scanner so it's
pretty flexible. YMMV.

I have a bunch of FaiF code to release but i won't do so until i have
adequate documentation so I'll get around to adding support one of
these days.