We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99436ea commit 499af62Copy full SHA for 499af62
.github/workflows/docs.yml
@@ -21,6 +21,7 @@ jobs:
21
pip install mkdocs
22
pip3 install $(mkdocs get-deps)
23
sudo apt-get update
24
+ sudo apt-get install php
25
sudo apt-get install -y lftp
26
sudo apt-get install nodejs
27
sudo apt-get install npm
@@ -31,6 +32,10 @@ jobs:
31
32
run: |
33
wget http://localhost:8080/api/v2/openapi.json -P /tmp/
34
openapi-to-md /tmp/openapi.json /docs/api/
35
+ - name: Create function level documentation with phpdocumentor
36
+ run: |
37
+ wget https://phpdoc.org/phpDocumentor.phar -P /tmp/
38
+ php /tmp/phpDocumentor.phar --ignore vendor/ -d . -t /docs/php-documentor/
39
- name: Build MkDocs site
40
41
mkdocs build
0 commit comments