sample implementation of phpdocumentor using sphinx
Project description
tk.phpautodoc
tk.phpautodoc is sphinx extension to embed PHPDocs to sphinx document. It works like sphinx.ext.autodoc.
Setup
Install this package and add ‘sphinxcontrib_phpautodoc’ to extensions list:
# in conf.py extensions += ['sphinxcontrib.phpdomain', 'sphinxcontrib_phpautodoc']
That’s all.
Directives
phpautomodule
phpautomodule works like automodule directive in sphinx.ext.autodoc. It parses .php file, and then pick up functions, classes and methods to your docs.
ex:
.. phpautomodule:: :filename: path/to/source_code.php :members: :undoc-members:
phpautoclass
phpautoclass works like autoclass directive in sphinx.ext.autodoc. It parses .php file, and then pick up classes and their members to your docs.
ex:
.. phpautoclass:: MyClass,MySubClass :filename: path/to/source_code.php :members: :undoc-members:If you do not specify any class-names, phpautoclass picks up all classes in .php file.
ex:
.. phpautoclass:: :filename: path/to/source_code.php :members: :undoc-members:
LICENSE
Apache License 2.0
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file tk.phpautodoc-1.0.0.tar.gz
.
File metadata
- Download URL: tk.phpautodoc-1.0.0.tar.gz
- Upload date:
- Size: 21.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | be360a018e3a518f1122c8e810278c69ce390c930fbbba9858c805e196db58ec |
|
MD5 | 50f90274012d9934fd2220f0cbbbcc6f |
|
BLAKE2b-256 | 304d0666e483b17c403632326006000eb7695a2b27f07ed5d8c10bfe01f19137 |