cvuorinen/phpdoc-markdown-public
最新稳定版本:0.2.0
Composer 安装命令:
composer require cvuorinen/phpdoc-markdown-public
包简介
phpDocumentor template that generates Markdown documentation of the public API
README 文档
README
phpDocumentor template that generates Markdown documentation of only the public API. It will skip all abstract classes and non-public methods.
The main use-case for this template is to generate simple and nice looking usage documentation, that can then be published on GitHub.
For example, a small library can document it's public API in DocBlock comments, use this template to generate the Markdown documentation and then commit it to GitHub with the library to easily create a nice looking documentation for other developers to see.
Example of documentation generated with this template: https://github.com/cvuorinen/raspicam-php/tree/master/docs
Installation
Install with composer:
composer require cvuorinen/phpdoc-markdown-public
Usage
Run phpDocumentor and set template as vendor/cvuorinen/phpdoc-markdown-public/data/templates/markdown-public.
Example using command-line arguments:
./vendor/bin/phpdoc --directory=src/ --target=docs/ --template="vendor/cvuorinen/phpdoc-markdown-public/data/templates/markdown-public" --title="My Project Documentation"
More information about the available arguments can be found at running phpDocumentor.
Example using configuration file:
Add a file called phpdoc.xml with the following content to the root of your project and invoke the phpdoc command without arguments. Modify the configuration to suit your project.
<?xml version="1.0" encoding="UTF-8" ?> <phpdoc> <title>My Project Documentation</title> <parser> <target>build</target> </parser> <transformer> <target>docs</target> </transformer> <transformations> <template name="vendor/cvuorinen/phpdoc-markdown-public/data/templates/markdown-public" /> </transformations> <files> <directory>src</directory> <ignore>test/*</ignore> </files> </phpdoc>
More information about configuring phpDocumentor.
统计信息
- 总下载量: 13.78k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 36
- 点击次数: 0
- 依赖项目数: 29
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-12-14