mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
30 lines
598 B
Plaintext
30 lines
598 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# phpdox
|
|
|
|
> A PHP documentation generator.
|
|
> More information: <https://manned.org/phpdox>.
|
|
|
|
- Display an annotated skeleton configuration XML file:
|
|
|
|
`phpdox --skel`
|
|
|
|
- Generate documentation for the current working directory:
|
|
|
|
`phpdox`
|
|
|
|
- Generate documentation using a specific configuration file:
|
|
|
|
`phpdox {{[-f|--file]}} {{path/to/phpdox.xml}}`
|
|
|
|
- Only run the metadata collection process:
|
|
|
|
`phpdox {{[-c|--collector]}}`
|
|
|
|
- Only run the documentation generator process:
|
|
|
|
`phpdox {{[-g|--generator]}}`
|