cvuorinen / phpdoc-md
This package is abandoned and no longer maintained.
The author suggests using the cvuorinen/phpdoc-markdown-public package instead.
PHP documentation generator, with markdown output
0.1.2
2015-11-12 20:16 UTC
Requires
- php: >=5.3.1
- twig/twig: ~1.18.0
Requires (Dev)
- phpdocumentor/phpdocumentor: ~2.8.0
README
This is a script that can generate markdown (.md) documentation files from your DocBlock comments.
It is tailored for projects using PSR-0, PSR-1, PSR-2, PSR-4 and namespaces.
This is based on the work of Evert Pot in https://github.com/evert/phpdoc-md.
Note! This package has been superseded by https://github.com/cvuorinen/phpdoc-markdown-public
Installation
Install with composer:
composer require cvuorinen/phpdoc-md
Usage
First ensure that phpDocumentor 2 is installed somewhere, after, you must
generate a file called structure.xml
.
The easiest is to create a temporary directory, for example named docs/
.
# phpdoc command
phpdoc -d [project path] -t docs/ --template="xml"
# Next, run phpdocmd:
phpdocmd docs/structure.xml [outputdir]
Options
--lt [template]
This specifies the 'template' for links we're generating. By default
this is "%c.md".
--title [title]
This specifies the title for the generated Markdown document.